* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.underconstruction {
    font-family: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.underconstruction-container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.underconstruction-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background-image: url('../img/isotipo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.07;
    filter: brightness(0) saturate(100%) invert(26%) sepia(100%) saturate(2048%) hue-rotate(213deg) brightness(97%) contrast(91%);
    z-index: 1;
}

.underconstruction-content {
    text-align: center;
    color: rgb(92, 117, 204);
    z-index: 2;
    position: relative;
    max-width: 600px;
    padding: 2rem;
    padding-bottom: 120px;
}

.underconstruction-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.underconstruction-logo img {
    max-width: 600px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(26%) sepia(100%) saturate(2048%) hue-rotate(213deg) brightness(97%) contrast(91%);
}

.underconstruction-main-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: none;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.underconstruction-subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.underconstruction-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(92, 117, 204, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(92, 117, 204, 0.2);
}

.underconstruction-footer-text {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.5px;
    color: white;
    margin: 0;
}

.underconstruction-footer-contact {
    display: flex;
    align-items: center;
}

.underconstruction-footer-whatsapp-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.underconstruction-footer-whatsapp-link:hover {
    opacity: 0.8;
}

.underconstruction-footer-whatsapp-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .underconstruction-content {
        padding: 1rem;
    }

    .underconstruction-logo img {
        max-width: 500px;
    }

    .underconstruction-main-title {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }

    .underconstruction-subtitle {
        font-size: 0.9rem;
    }

    .underconstruction-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .underconstruction-content {
        padding: 1rem;
        padding-bottom: 140px;
    }

    .underconstruction-container::before {
        width: 130%;
        height: 130%;
        opacity: 0.06;
    }

    .underconstruction-footer-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .underconstruction-logo img {
        max-width: 450px;
    }

    .underconstruction-main-title {
        font-size: 1.4rem;
    }

    .underconstruction-subtitle {
        font-size: 0.85rem;
    }

    .underconstruction-footer-text {
        font-size: 0.75rem;
    }

    .underconstruction-footer {
        padding: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .underconstruction-content {
        padding: 1rem;
        padding-bottom: 150px;
    }

    .underconstruction-footer-whatsapp-icon {
        width: 16px;
        height: 16px;
    }

    .underconstruction-container::before {
        width: 150%;
        height: 150%;
        opacity: 0.05;
    }
}