.hero {
    /* Gradiente radial profundo que simula iluminación de estudio */
    background: radial-gradient(circle at 85% 30%, #113665 0%, #061830 75%);
    color: var(--text-light);
    padding: 150px 0 40px 0; /* Reducido de 120px a 40px para subir la sección */
    position: relative;
    overflow: hidden;         /* Obligatorio para que las luces de fondo no generen scroll lateral */
}

/* Aurora de luz #1: Detrás de los textos */
.hero::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -5%;
    left: -10%;
    z-index: 1;
    pointer-events: none;
}

/* Aurora de luz #2: Detrás de Mauricio */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 163, 255, 0.14) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: 5%;
    right: 5%;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10; /* Asegura que el contenido quede por encima de las auroras de luz */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    padding-bottom: 40px;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra sutil al texto */
}

.hero-title span {
    color: var(--accent-light-blue);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 540px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    background-color: #20ba59;
}

/* Área de Imagen y Testimonio Flotante */
.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.hero-avatar {
    max-width: 90%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)); /* Sombra realista para recortar a Mauricio */
}

.quote-box {
    position: absolute;
    right: 0;
    top: 15%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 4px solid var(--accent-light-blue);
    padding: 24px;
    border-radius: 8px;
    max-width: 310px;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-icon {
    font-size: 52px;
    color: var(--accent-light-blue);
    line-height: 1;
    display: block;
    margin-bottom: -5px;
    font-family: serif;
}

.quote-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #e2e8f0;
    margin-bottom: 12px;
    font-weight: 300;
}

.quote-author {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--accent-light-blue);
    font-style: italic;
}

/* ESTILOS DE LA ONDA VECTORIAL INTERNA */
.hero-wave {
    position: absolute;
    bottom: -1px; /* Evita que quede una línea azul fantasma por milímetros */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 15; /* Por encima de las fotos del hero */
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px; /* Determina qué tan alta o pronunciada es la onda */
}

.hero-wave .wave-fill {
    fill: #ffffff; /* Ajusta la onda al color exacto de la siguiente sección */
}