/* ========================================
   RESET, BASE Y TIPOGRAFIA
   Estilos globales del documento.
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--gris-oscuro);
    background: var(--blanco);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- Tipografia --- */
.font-brand {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.font-titulo {
    font-family: 'Montserrat', Arial, sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--azul-oscuro);
    line-height: 1.3;
}

/* --- Layout helpers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.seccion {
    padding: 100px 0;
}

.seccion-gris {
    background: var(--gris-fondo);
}

.seccion-azul {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-principal) 100%);
    color: var(--blanco);
}

.seccion-azul h2,
.seccion-azul h3,
.seccion-azul p {
    color: var(--blanco);
}

.texto-centro {
    text-align: center;
}

/* --- Etiquetas y titulos de seccion --- */
.etiqueta-seccion {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--azul-principal);
    margin-bottom: 12px;
    display: block;
}

.seccion-azul .etiqueta-seccion {
    color: rgba(255, 255, 255, 0.7);
}

.titulo-seccion {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.subtitulo-seccion {
    font-size: 1.125rem;
    color: var(--gris-medio);
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

.seccion-azul .subtitulo-seccion {
    color: rgba(255, 255, 255, 0.8);
}

.cta-intermedio {
    text-align: center;
    padding-top: 48px;
}
