* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Evita que el usuario pueda hacer scroll */
}

body {
    /* Fondo claro texturizado, limpio y muy premium */
    background-color: #fcfbf7;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03), transparent 60%),
        linear-gradient(135deg, #f7f5f0 0%, #fcfbf9 100%);
    font-family: Arial, Helvetica, sans-serif;
    color: #1a253c; /* Azul marino profundo para los textos */
    display: flex;
    align-items: center;
    justify-content: center;
}

.under-construction-page {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Contenedor tipo tarjeta que unifica todo en una sola vista */
.card-container {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-wrapper {
    width: 100%;
    max-width: 310px;
    margin-bottom: 15px;
}

.logo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(26, 37, 60, 0.12));
}

.info-section {
    width: 100%;
}

.coming-soon {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 900;
    color: #1a253c; /* Azul marino */
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.slogan {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: #d4af37; /* Dorado */
    margin-bottom: 12px;
    font-style: italic;
}

.services-list {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #5c6b84; /* Azul grisáceo suave */
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Estilo para las Áreas de Servicio */
.service-areas {
    font-size: clamp(12px, 1.3vw, 14px);
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px; /* <--- Cambiar de 20px a 30px para dar más espacio */
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.service-areas strong {
    color: #1a253c;
}

/* Contenedor de Botones Interactivos */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 20px;
}

/* Estilo general de los botones */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(26, 37, 60, 0.08);
}

.btn i {
    font-style: normal;
}

/* Botón de llamada (Dorado con letras azules) */
.btn-call {
    background: #d4af37;
    color: #1a253c;
}

.btn-call:hover {
    background: #c19e30;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.2);
}

/* Botón de Google Maps (Azul Marino con letras blancas) */
.btn-map {
    background: #1a253c;
    color: #ffffff;
}

.btn-map:hover {
    background: #111928;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 37, 60, 0.2);
}

.footer-link {
    margin-top: 10px;
}

.footer-link a {
    color: #1a253c;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.footer-link a:hover {
    text-decoration: underline;
}

/* Adaptación responsiva para pantallas muy pequeñas o celulares en horizontal */
@media screen and (max-height: 650px) {
    .logo-wrapper {
        max-width: 160px;
        margin-bottom: 8px;
    }
    .coming-soon {
        font-size: 20px;
    }
    .slogan {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .services-list {
        display: none; /* Se oculta para dar prioridad a las áreas de servicio y botones */
    }
    .service-areas {
        margin-bottom: 12px;
        font-size: 11px;
    }
    .action-buttons {
        margin-bottom: 10px;
    }
    .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}