:root {
    --primary-blue: #144773;
    --secondary-purple: #d87ea3;
    --accent-orange: #f68a30;
    --golden-yellow: #eab332;
    --soft-pink: #e7d3e0;
    --light-yellow: #f2efaa;
    --green-soft: #e3efdd;
    --white: #ffffff;
    --text-gray: #4a4a4a;
    --bg-light: #fbfbfb;
    --font-base: 'Montserrat', sans-serif;
    --header-height: 110px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-weight: 300;
    color: var(--primary-blue);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    cursor: auto;
}

/* COMPENSACIÓN Y ESPACIADO GLOBAL DE SECCIONES (CORREGIDO A 60PX OPTIMIZADO) */
section {
    scroll-margin-top: 75px;
    padding: 60px 10% 90px 10%; /* Ajustado el padding superior a 60px para que el contenido suba y no choque abajo en el viewport */
    background-color: var(--white);
}

.w-full {
    width: 100%;
    display: block;
}

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

/* --- BOTONES GLOBALES --- */
.btn-cta {
    background-color: var(--accent-orange) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(246, 138, 48, 0.3);
    transition: all 0.3s ease !important;
}

.btn-cta::before {
    display: none !important;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 138, 48, 0.5);
}

.btn-cta:active {
    transform: scale(0.95);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(20, 71, 115, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 109, 173, 0.3);
    color: var(--white);
}

.btn-secondary {
    border: 2px solid var(--primary-blue);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-blue);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(20, 71, 115, 0.05);
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 71, 115, 0.2);
}

/* --- ANIMACIONES REVEAL GLOBALES --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* --- SECCIÓN CONTACTO AISLADA --- */
.contacto-section {
    background-color: var(--bg-light) !important;
    padding: 30px 10% 100px 10% !important; /* Mantiene su balance específico e independiente para el formulario */
}