:root {
    /* PALETA CORPORATIVA LOXA */
    --loxa-primary: #5A5A5A;   /* Gris tecnológico */
    --loxa-success: #63C132;   /* Verde activo */
    --loxa-info: #2F80ED;      /* Azul técnico */
    
    /* ESCALA NEUTRA */
    --loxa-white: #FFFFFF;
    --loxa-light: #F5F5F5;
    --loxa-text-main: #2B2B2B;
    --loxa-text-sec: #9E9E9E;
    --loxa-black: #111111;
    
    --system-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body.construction-body {
    font-family: var(--system-font);
    background-color: var(--loxa-white);
    color: var(--loxa-text-main);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.apple-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

/* Badge Superior en Gris Corporativo */
.coming-soon-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--loxa-primary);
    background: var(--loxa-light);
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Tipografía */
.hero-content {
    max-width: 700px;
    margin-bottom: 40px;
}

.apple-title {
    font-size: clamp(38px, 8vw, 60px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--loxa-black);
    margin-bottom: 24px;
}

/* Gradiente de Primary a Success (Gris a Verde) */
.gradient-text {
    background: linear-gradient(90deg, var(--loxa-primary), var(--loxa-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apple-description {
    font-size: 19px;
    color: var(--loxa-text-sec);
    line-height: 1.5;
    max-width: 520px;
    margin: 0 auto;
}

/* Pilares de Marca */
.apple-date {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.date-item .number {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--loxa-success); /* Verde para indicar que todo está correcto */
}

.date-item .label {
    font-size: 10px;
    font-weight: 700;
    color: var(--loxa-primary);
    letter-spacing: 1px;
}

.date-divider {
    width: 1px;
    height: 30px;
    background-color: var(--loxa-light);
}

/* Botón Estilo Apple en Verde Success */
.apple-form-wrapper {
    width: 100%;
    max-width: 320px;
}

.apple-button {
    width: 100%;
    background-color: var(--loxa-success);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(99, 193, 50, 0.2);
}

.apple-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 193, 50, 0.3);
    filter: brightness(1.05);
}

.apple-button:active {
    transform: scale(0.97);
}

.apple-footer-contact {
    margin-top: 24px;
    font-size: 14px;
    color: var(--loxa-text-sec);
}

.apple-footer-contact a {
    color: var(--loxa-info); /* Azul Info para enlaces */
    text-decoration: none;
    font-weight: 500;
}

/* Footer Premium Black */
.apple-footer {
    padding: 40px;
    font-size: 12px;
    color: var(--loxa-text-sec);
    text-align: center;
    background-color: var(--loxa-black);
}
/* Contenedor del logo para darle aire y centrado */
.brand-logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo del logo circular (estilo perfil Apple) */
.brand-logo {
    width: 80px;         /* Tamaño moderado y elegante */
    height: 80px;
    border-radius: 50%;  /* Lo hace circular */
    object-fit: cover;   /* Evita que se deforme la imagen */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Sombra suave */
    border: 3px solid var(--loxa-light); /* Borde fino para resaltar */
}