/* ==========================================================================
   Flor Capeletto - Sistema de Diseño CSS Premium
   ========================================================================== */

/* Variables y Tokens de Diseño */
:root {
    /* Paleta Orgánica Extraída del Logo y Colores de Marca */
    --primary: #3F625B;        /* Verde Bosque Profundo - Bienestar y Calma */
    --primary-light: #4E736B;  /* Verde Bosque Intermedio */
    --accent: #D98757;         /* Terracota Energético - Botones y CTAs Clave */
    --accent-hover: #C57345;   /* Terracota Oscurecido */
    --secondary: #90B5A3;      /* Verde Sabio Menta - Acentos Suaves */
    --steel-blue: #4E6074;     /* Azul Acero - Textos de Apoyo y Detalles */
    --peach: #EFAA89;          /* Durazno Melocotón - Tarjetas y Bordes Cálidos */
    
    /* Variantes de Fondo Sutiles */
    --bg-warm: #FCFBF9;        /* Tono Lino Cálido (Sacado del fondo original de tu logo) */
    --bg-rose: #F9E5E4;        /* Rosa Pastel - Secciones y Contrastes */
    --bg-lilac: #D8DAE7;       /* Lavanda Suave - Alternativo */
    --white: #FFFFFF;
    
    /* Textos */
    --text-main: #2C3531;      /* Gris Carbón Orgánico muy oscuro (Legible y suave) */
    --text-muted: #5D6D66;     /* Gris Menta Muted */
    --text-white: #FFFFFF;

    /* Sombras y Efectos */
    --shadow-sm: 0 2px 8px rgba(63, 98, 91, 0.06);
    --shadow-md: 0 10px 30px rgba(63, 98, 91, 0.08);
    --shadow-lg: 0 20px 40px rgba(63, 98, 91, 0.12);
    --shadow-accent: 0 10px 25px rgba(217, 135, 87, 0.25);
    
    /* Transiciones */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fuentes */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset y Estilos Globales */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

section[id], div[id], [id] {
    scroll-margin-top: 130px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-warm);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
}

/* Tipografía de Títulos */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Contenedores y Secciones */
section {
    padding: 90px 20px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Encabezados de Sección */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.section-divider-left {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 0 25px 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Botones Premium */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: var(--shadow-accent);
    border: 2px solid var(--accent);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 135, 87, 0.35);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Cabecera / Navbar Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(252, 251, 249, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(78, 96, 116, 0.08);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    background-color: rgba(252, 251, 249, 0.94);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logotipo */
.navbar-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(63, 98, 91, 0.06));
}

.navbar.scrolled .navbar-logo {
    height: 52px;
}

/* Enlaces del Menú */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-btn {
    display: inline-block;
    padding: 10px 22px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Menú Móvil Hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 80% 20%, rgba(144, 181, 163, 0.15) 0%, rgba(252, 251, 249, 0) 50%),
                radial-gradient(circle at 10% 80%, rgba(249, 229, 228, 0.25) 0%, rgba(252, 251, 249, 0) 60%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(63, 98, 91, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(63, 98, 91, 0.15);
}

.hero-title {
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-title .text-highlight {
    color: var(--accent);
    font-family: 'Alex Brush', cursive;
    font-size: 1.55em; /* Script fonts are delicate, so we scale it up for maximum visual balance */
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    transform: rotate(-3deg);
    margin-left: 8px;
    letter-spacing: 1px;
    vertical-align: middle;
    line-height: 0.8;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-specialization {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
    border-left: 2px solid var(--accent);
    padding-left: 15px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Contenedor del Retrato y Sello en el Hero */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 100%;
    height: 500px; /* Altura adecuada para la composición de la silueta */
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 380px; /* Un poco más ancho para su pose sentada */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Alinear abajo para que no flote en el aire */
    z-index: 3;
}

/* Foto de Flor - Recorte Asimétrico y Bordes Redondeados Premium */
.hero-profile-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover; /* Recortar la imagen con fondo dentro del marco */
    object-position: top center;
    border-radius: 140px 24px 140px 24px; /* Forma de hoja orgánica y asimétrica */
    border: 6px solid var(--white); /* Borde blanco que separa la foto del fondo */
    box-shadow: var(--shadow-lg); /* Sombra elegante y profunda */
    z-index: 4;
    position: relative;
    transition: var(--transition);
}

.hero-profile-photo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(63, 98, 91, 0.18);
}

/* Manchas orgánicas de fondo (Integración fluida de acuarelas) */
.hero-organic-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px); /* Desenfoque suave para efecto acuarela */
    z-index: 1;
    pointer-events: none;
}

.hero-organic-blob.blob-1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(144, 181, 163, 0.22) 0%, rgba(63, 98, 91, 0.15) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 5%;
    left: 10%;
    animation: blob-float-1 12s ease-in-out infinite alternate;
}

.hero-organic-blob.blob-2 {
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, rgba(239, 170, 137, 0.18) 0%, rgba(217, 135, 87, 0.12) 100%);
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    bottom: 15%;
    right: 5%;
    animation: blob-float-2 15s ease-in-out infinite alternate;
}

.hero-organic-blob.blob-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(249, 229, 228, 0.3) 0%, rgba(144, 181, 163, 0.1) 100%);
    border-radius: 50% 40% 60% 40% / 40% 50% 50% 60%;
    top: 40%;
    left: 0%;
    animation: blob-float-3 10s ease-in-out infinite alternate;
}

/* Animaciones de morfología y flotación para las manchas de fondo */
@keyframes blob-float-1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
    }
    100% {
        transform: translate(15px, -20px) scale(1.06) rotate(15deg);
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    }
}

@keyframes blob-float-2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    }
    50% {
        border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
    }
    100% {
        transform: translate(-15px, 20px) scale(0.94) rotate(-20deg);
        border-radius: 50% 50% 60% 40% / 40% 60% 40% 60%;
    }
}

@keyframes blob-float-3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate(10px, 10px) scale(1.1) rotate(10deg);
    }
}

.hero-triskelion-seal {
    position: absolute;
    bottom: 25px;
    right: -20px;
    width: 76px;
    height: 76px;
    background: rgba(252, 251, 249, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(63, 98, 91, 0.12);
    border: 1px solid rgba(63, 98, 91, 0.15);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse-soft 3.5s ease-in-out infinite;
}

.hero-triskelion-seal:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 30px rgba(217, 135, 87, 0.25);
    border-color: var(--accent);
    background: var(--white);
}

.triskelion-seal-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.9;
    animation: spin-triskelion 12s linear infinite;
    transition: opacity 0.3s ease;
}

.hero-triskelion-seal:hover .triskelion-seal-logo {
    animation-duration: 2.5s;
    opacity: 1;
}

@keyframes spin-triskelion {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-soft {
    0% { transform: scale(1) translateY(0); box-shadow: 0 4px 15px rgba(63, 98, 91, 0.08); }
    50% { transform: scale(1.06) translateY(-4px); box-shadow: 0 12px 28px rgba(63, 98, 91, 0.18); }
    100% { transform: scale(1) translateY(0); box-shadow: 0 4px 15px rgba(63, 98, 91, 0.08); }
}

/* Logotipo de Firma Personal Premium - Limpio y Moderno */
.brand-signature {
    display: inline-flex;
    align-items: baseline; /* Alinear exactamente en la misma línea base */
    line-height: 1;
}

.brand-signature .brand-cursive {
    font-family: 'Oooh Baby', cursive; /* Firma manuscrita fina y sutil estilo Laura Ribas */
    font-size: 2.6rem;
    font-weight: 400;
    font-style: normal;
    color: var(--primary);
    display: inline-block;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0;
}

.brand-signature .brand-print {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent); /* Color terracota de marca */
    letter-spacing: 4px; /* Separación elegante */
    text-transform: uppercase;
    display: inline-block;
    margin-left: 6px;
    margin-top: 0;
}

/* Navbar Logo Scaling */
.navbar-brand-logo {
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
    display: inline-flex;
    align-items: baseline; /* Mantener la alineación base en el scroll */
}

.navbar.scrolled .navbar-brand-logo {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.navbar-brand-logo .brand-cursive {
    font-size: 2.5rem;
}

.navbar-brand-logo .brand-print {
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-left: 4px;
}

/* Navbar Scrolled State Scaling */
.navbar.scrolled .navbar-brand-logo .brand-cursive {
    font-size: 2.1rem;
}

.navbar.scrolled .navbar-brand-logo .brand-print {
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-left: 2px;
}

/* Hero Brand Signature Styling - Estilo Laura Ribas Horizontal */
.hero-brand-signature-container {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px; /* Espacio vertical ampliado para evitar solapamiento con la firma */
}

.hero-brand-signature-container .brand-signature {
    display: inline-flex;
    align-items: baseline; /* Alinear exactamente las bases del nombre y apellido */
    gap: 12px; /* Espacio horizontal entre Flor y CAPELETTO */
    line-height: 1;
}

.hero-brand-signature-container .brand-cursive {
    font-family: 'Oooh Baby', cursive; /* Firma sutil y fina estilo Laura Ribas */
    font-size: 5.8rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    margin: 0;
    display: inline-block;
}

.hero-brand-signature-container .brand-print {
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1;
}

.hero-brand-role-signature {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin-left: 10px; /* Ligero desplazamiento para equilibrio visual */
}

/* Sección Método */
.metodo {
    background-color: var(--white); /* Fondo blanco puro para contraste nítido con el Hero y Quién Soy */
    border-top: 1px solid rgba(78, 96, 116, 0.06);
    border-bottom: 1px solid rgba(78, 96, 116, 0.06);
}

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.metodo-card {
    background-color: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(63, 98, 91, 0.05);
    display: flex;
    flex-direction: column;
}

.metodo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 98, 91, 0.15);
}

/* Pilar Destacado en el Centro */
.metodo-card.highlighted {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.metodo-card.highlighted:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.metodo-card.highlighted h3,
.metodo-card.highlighted p,
.metodo-card.highlighted .card-subtitle {
    color: var(--white);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: rgba(63, 98, 91, 0.08);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.metodo-card.highlighted .card-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.metodo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metodo-card.highlighted .card-subtitle {
    color: var(--peach);
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-list li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.card-list li i {
    color: var(--accent);
    margin-top: 5px;
    font-size: 0.9rem;
}

.metodo-card.highlighted .card-list li i {
    color: var(--peach);
}

.quien-soy {
    background-color: rgba(144, 181, 163, 0.15); /* Contraste verde sabio menta suave y elegante */
    border-top: 1px solid rgba(144, 181, 163, 0.2);
    border-bottom: 1px solid rgba(144, 181, 163, 0.2);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.quien-soy .grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center; /* Centrado vertical */
}

.quien-soy-image-container {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.quien-soy-photo {
    width: 100%;
    max-height: 580px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    /* Sombras organicas adaptadas al contorno transparente de la foto */
    filter: drop-shadow(0 15px 30px rgba(63, 98, 91, 0.12));
    /* Mascara de desvanecimiento suave para disimular el corte inferior de las piernas */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 76%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 76%, rgba(0,0,0,0) 100%);
}

/* Sobre Mí - Sección Dinámica y Balanceada Sin Foto */
.sobre-mi-header-container {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 5;
}

.sobre-mi-header-container .section-title {
    margin-bottom: 10px;
}

.sobre-mi-header-container .bio-subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--accent);
    margin-top: 5px;
}

.sobre-mi-bio-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.bio-card {
    background-color: var(--white);
    border: 1px solid rgba(144, 181, 163, 0.18);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(63, 98, 91, 0.03);
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.sobre-mi-fact-sheet {
    background-color: #fdfbf7; /* Fondo cálido tipo papel marfil */
    border: 1px dashed rgba(217, 135, 87, 0.45); /* Borde punteado terracota */
    border-radius: 16px;
    padding: 30px;
    box-shadow: 2px 6px 20px rgba(63, 98, 91, 0.03);
    transform: rotate(-0.5deg); /* Ligera rotación orgánica */
    max-width: 100%;
    width: 100%;
    align-self: auto;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre-mi-fact-sheet:hover {
    transform: rotate(0deg) scale(1.01);
    box-shadow: 4px 8px 25px rgba(63, 98, 91, 0.06);
}

.note-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.note-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-handwritten {
    color: var(--accent); /* Terracota */
    font-size: 0.8rem;
    margin-top: 6px; /* Alinear con el texto cursivo */
    flex-shrink: 0;
}

.note-text {
    font-family: 'Oooh Baby', cursive;
    font-size: 1.35rem; /* La tipografía manuscrita es fina y requiere mayor tamaño */
    color: var(--primary); /* Verde bosque */
    line-height: 1.35;
    font-weight: 500;
}

.note-text strong {
    font-family: var(--font-body); /* Montserrat */
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent); /* Terracota */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-right: 6px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 480px) {
    .sobre-mi-fact-sheet {
        padding: 18px 20px;
        transform: rotate(0deg); /* Quitar rotación en móviles muy pequeños */
    }
    .note-text {
        font-size: 1.25rem;
    }
}

.sobre-mi-pillars-section {
    margin-top: 60px;
    position: relative;
    z-index: 5;
}

.sobre-mi-pillars-header {
    text-align: center;
    margin-bottom: 45px;
}

.sobre-mi-pillars-header .accompagnamiento-title {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.sobre-mi-pillars-header .accompagnamiento-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.65;
}

.sobre-mi-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pillar-card-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 35px 25px;
    border-radius: 16px;
    background-color: var(--white);
    border: 1px solid rgba(144, 181, 163, 0.12);
    box-shadow: 0 10px 30px rgba(63, 98, 91, 0.02);
    transition: var(--transition);
}

.pillar-card-horizontal:hover {
    transform: translateY(-5px);
    border-color: rgba(63, 98, 91, 0.25);
    box-shadow: 0 15px 35px rgba(63, 98, 91, 0.06);
}

.pillar-card-horizontal .pillar-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(217, 135, 87, 0.08);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: var(--transition);
}

.pillar-card-horizontal:hover .pillar-icon {
    background-color: var(--accent);
    color: var(--white);
}

.pillar-card-horizontal h5 {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.pillar-card-horizontal p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.sobre-mi-cta-centered {
    text-align: center;
    margin-top: 20px;
}

.sobre-mi-cta-centered .cta-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 25px;
}

.sobre-mi-cta-centered .btn-primary {
    padding: 14px 35px;
    font-size: 0.98rem;
}

/* Banner de Estadísticas Horizontal */
.sobre-mi-stats-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 16px;
    padding: 35px 25px;
    margin-top: 60px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 5;
}

.stat-banner-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.stat-banner-num {
    display: block;
    font-family: var(--font-title);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--peach);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-banner-lbl {
    display: block;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-weight: 500;
}

.stat-banner-divider {
    width: 1px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Responsividad para la sección Sobre Mí */
@media (max-width: 991px) {
    .sobre-mi-bio-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .sobre-mi-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sobre-mi-pillars-section {
        padding: 30px 20px;
    }
    
    .sobre-mi-stats-banner {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .stat-banner-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }
}

.quien-soy-content {
    background-color: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 3;
}

.bio-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
}

.bio-paragraphs strong {
    color: var(--primary);
    font-weight: 600;
}

/* Sección Recursos e Infoproductos */
.recursos {
    background-color: var(--bg-warm);
    border-top: 1px solid rgba(78, 96, 116, 0.08);
    border-bottom: 1px solid rgba(78, 96, 116, 0.08);
}

/* Tabs Filtros */
.recursos-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 10px 24px;
    border: 1px solid rgba(78, 96, 116, 0.15);
    background-color: var(--white);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Grid de Recursos */
.recursos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.recursos-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recursos-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.recurso-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(78, 96, 116, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.recurso-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(144, 181, 163, 0.2);
}

.recurso-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.recurso-badge.free {
    background-color: rgba(144, 181, 163, 0.15);
    color: var(--primary);
}

.recurso-badge.premium {
    background-color: rgba(217, 135, 87, 0.12);
    color: var(--accent);
}

.recurso-icon-bg {
    height: 120px;
    background-color: rgba(63, 98, 91, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    color: var(--primary);
    border-bottom: 1px solid rgba(63, 98, 91, 0.04);
}

.recurso-card:hover .recurso-icon-bg {
    background-color: rgba(63, 98, 91, 0.06);
}

.recurso-card:nth-child(even) .recurso-icon-bg {
    color: var(--accent);
}

.recurso-card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recurso-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recurso-type {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.recurso-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.recurso-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-top: 1px dashed rgba(78, 96, 116, 0.12);
    padding-top: 20px;
}

.meta-item {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--steel-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-card-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-card-action:hover {
    background-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.btn-card-action-premium {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    background-color: transparent;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
}

.btn-card-action-premium:hover {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

/* Sección Blog */
.blog {
    background-color: rgba(144, 181, 163, 0.14); /* Verde sabio menta sólido para separar con Recursos */
    border-top: 1px solid rgba(144, 181, 163, 0.22);
    border-bottom: 1px solid rgba(144, 181, 163, 0.22);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(78, 96, 116, 0.04);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(63, 98, 91, 0.9);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 35px;
}

.blog-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-date i {
    margin-right: 6px;
}

.blog-card h3 {
    font-size: 1.45rem;
    margin-bottom: 15px;
    line-height: 1.35;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more i {
    transition: var(--transition);
}

.blog-card:hover .blog-read-more {
    color: var(--accent);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
}

/* Sección Contacto */
.contacto {
    background-color: var(--primary); /* Verde Bosque Profundo */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.contacto .section-title {
    color: var(--white);
}

.contacto .section-divider-left {
    background-color: var(--accent);
}

.contacto-info {
    padding-right: 20px;
}

.contacto-intro-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contacto-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.method-icon-bg.whatsapp {
    background-color: #25D366;
}

.method-icon-bg.email {
    background-color: var(--accent); /* Contraste terracota */
}

.method-details h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.method-details p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.method-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.method-link:hover {
    color: var(--peach);
}

.contacto-socials-wrapper h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}

/* Formulario */
.contacto-form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: var(--transition);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(217, 135, 87, 0.25);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.85)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px !important; /* Espacio para la flecha custom */
    cursor: pointer;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D98757' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.form-group select option {
    background-color: var(--white);
    color: var(--text-main);
    padding: 12px;
}

.btn-form-submit {
    padding: 16px 0;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-accent);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-form-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 135, 87, 0.35);
}

.contacto .checkbox-container {
    color: rgba(255, 255, 255, 0.85);
}

.form-status-message {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.form-status-message.success {
    display: block;
    background-color: rgba(255, 255, 255, 0.12);
    color: #8BE4B5;
    border: 1px solid rgba(139, 228, 181, 0.3);
}

.form-status-message.error {
    display: block;
    background-color: rgba(217, 135, 87, 0.15);
    color: #FFB38A;
    border: 1px solid rgba(217, 135, 87, 0.3);
}

/* Custom Select Dropdown Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45); /* Placeholder style */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.custom-select-trigger.has-value {
    color: var(--white); /* Active text color */
}

.custom-select-trigger:hover,
.custom-select-trigger.active {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.12);
}

.custom-select-trigger.active {
    box-shadow: 0 0 0 4px rgba(217, 135, 87, 0.25);
}

.custom-select-trigger.invalid {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(217, 135, 87, 0.35) !important;
}

.custom-select-arrow {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-trigger.active .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.custom-options-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(44, 53, 49, 0.98); /* Oscuro elegante y opaco */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-options-list.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.custom-option {
    padding: 12px 20px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.custom-option:hover {
    background-color: rgba(217, 135, 87, 0.15);
    color: var(--accent);
    padding-left: 26px; /* Efecto sutil de desplazamiento al pasar el ratón */
}

.custom-option.selected {
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 20px 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    height: 75px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul a:hover {
    color: var(--peach);
    padding-left: 5px;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal-link {
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--white) !important;
}



/* Modales e Interfaces de Captura */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 53, 49, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(63, 98, 91, 0.08);
}

.modal-card.admin {
    max-width: 800px;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.35);
}

.modal-card.admin .modal-close-btn,
.modal-card.legal .modal-close-btn {
    color: var(--primary);
    background-color: rgba(63, 98, 91, 0.08);
}

.modal-card.admin .modal-close-btn:hover,
.modal-card.legal .modal-close-btn:hover {
    background-color: rgba(63, 98, 91, 0.15);
}

.modal-header-bg {
    height: 140px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
}

.modal-icon-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border: 5px solid var(--white);
}

.modal-body {
    padding: 60px 45px 45px 45px;
    text-align: center;
}

.modal-body h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.modal-subtitle-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Formulario del Modal */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--steel-blue);
    font-size: 1.05rem;
}

.input-wrapper input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px 14px 45px;
    border-radius: 10px;
    border: 1px solid rgba(78, 96, 116, 0.15);
    background-color: var(--bg-warm);
    color: var(--text-main);
    transition: var(--transition);
    width: 100%;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(63, 98, 91, 0.08);
}

.btn-modal-submit {
    padding: 16px 0;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-accent);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.btn-modal-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Pantalla de Éxito en Modal */
.modal-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.4s ease;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(144, 181, 163, 0.15);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.modal-success-state h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-success-state p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 360px;
}

.btn-modal-download {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 0;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.btn-modal-download:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.modal-social-follow {
    border-top: 1px solid rgba(78, 96, 116, 0.12);
    padding-top: 20px;
    width: 100%;
    margin-top: 20px;
}

.modal-social-follow p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.btn-modal-instagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 14px 0;
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-modal-instagram:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Dashboard de Leads (Panel Admin) */
.admin-body {
    text-align: left;
    padding: 40px;
}

.admin-header-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.admin-header-title i {
    font-size: 1.8rem;
    color: var(--primary);
}

.admin-header-title h3 {
    margin-bottom: 0;
    font-size: 1.6rem;
}

.admin-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-admin-export {
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-admin-export:hover {
    background-color: var(--accent);
}

.btn-admin-clear {
    padding: 12px 24px;
    background-color: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(78, 96, 116, 0.2);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-admin-clear:hover {
    background-color: rgba(217, 135, 87, 0.08);
    color: var(--accent);
    border-color: rgba(217, 135, 87, 0.2);
}

.admin-table-wrapper {
    max-height: 380px;
    overflow-y: auto;
    border: 1px solid rgba(78, 96, 116, 0.1);
    border-radius: 12px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    text-align: left;
}

.admin-table th {
    background-color: rgba(63, 98, 91, 0.06);
    color: var(--primary);
    padding: 12px 18px;
    font-weight: 700;
    border-bottom: 1px solid rgba(78, 96, 116, 0.1);
}

.admin-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(78, 96, 116, 0.05);
    color: var(--text-main);
}

.admin-table tbody tr:hover {
    background-color: rgba(144, 181, 163, 0.04);
}

.admin-table .no-data {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-style: italic;
}

/* Animaciones Zoom y Bounce */
.animate-zoom {
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-bounce {
    animation: bounce 1.5s infinite;
}

@keyframes zoomIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ==========================================================================
   Sección de Testimonios
   ========================================================================== */
.testimonios {
    background-color: rgba(249, 229, 228, 0.32); /* Contraste rosa durazno cálido sólido y sofisticado */
    border-top: 1px solid rgba(249, 229, 228, 0.4);
    border-bottom: 1px solid rgba(249, 229, 228, 0.4);
}

/* Testimonios Carousel (Interactive Slider) */
.testimonios-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 10px 0;
}

/* Efervescencia o difuminado en los bordes laterales */
.testimonios-carousel-wrapper::before,
.testimonios-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.testimonios-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(252, 251, 249, 0.95), transparent);
}

.testimonios-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(252, 251, 249, 0.95), transparent);
}

.testimonios-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    cursor: grab;
    touch-action: pan-y; /* Permite scroll vertical nativo y scroll horizontal */
    -webkit-overflow-scrolling: touch;
    padding: 15px 10px; /* Para dar margen a las sombras de las tarjetas */
}

.testimonios-carousel-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.testimonios-carousel-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto; /* Evita suavizado mientras se arrastra para respuesta inmediata */
    user-select: none;
    -webkit-user-select: none;
}

.testimonios-carousel-track .testimonial-card {
    width: 290px;
    padding: 20px 18px; /* Padding más compacto en carrusel */
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonios-carousel-track .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* Recorte de Texto y Botón Ver Más */
.testimonial-text-wrap {
    position: relative;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Solo aplicamos límite y difuminado si excede las 4 líneas y tiene la clase .clipped */
.testimonial-text-wrap.clipped {
    max-height: 98px; /* Altura de 4 líneas completas de forma holgada */
    overflow: hidden;
}

.testimonial-text-wrap.clipped.expanded {
    max-height: 600px;
}

/* El difuminado solo existe cuando está recortado (.clipped) y no expandido */
.testimonial-text-wrap.clipped::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background: linear-gradient(to top, var(--white) 20%, transparent);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.testimonial-text-wrap.clipped.expanded::after {
    opacity: 0;
}

.testimonial-toggle-btn {
    display: inline-block;
    background: none;
    border: none;
    color: var(--accent-color);
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0 0 0;
    margin-top: 4px;
    transition: color 0.3s ease;
    text-align: left;
}

.testimonial-toggle-btn:hover {
    color: var(--primary);
}

/* Controles del Carousel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.carousel-control:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.carousel-control.prev {
    left: -20px;
}

.carousel-control.next {
    right: -20px;
}

@media (max-width: 768px) {
    .testimonios-carousel-wrapper::before,
    .testimonios-carousel-wrapper::after {
        width: 40px; /* Reducir difuminado en mÃ³viles */
    }
    .carousel-control {
        display: none; /* Ocultar botones en mÃ³vil y confiar en scroll tÃ¡ctil nativo */
    }
    .testimonios-carousel-track {
        padding-left: 20px;
        padding-right: 20px;
        gap: 16px;
    }
    .testimonios-carousel-track .testimonial-card {
        width: 290px;
    }
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 40px auto 0 auto;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 24px 20px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(78, 96, 116, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(144, 181, 163, 0.25);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 0.78rem;
    display: flex;
    gap: 3px;
}

.testimonial-source {
    display: none !important;
}

.text-linkedin {
    color: #0A66C2;
    font-size: 0.95rem;
}

.text-google {
    color: #EA4335;
    font-size: 0.95rem;
}

.text-email {
    color: var(--primary);
    font-size: 0.85rem;
}

.testimonial-body {
    flex-grow: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--text-main);
}

.testimonial-more-text {
    display: none;
}

.testimonial-more-text.visible {
    display: inline;
}

.testimonial-toggle-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    padding: 0;
    margin-left: 5px;
    display: inline;
    transition: var(--transition);
}

.testimonial-toggle-btn:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.testimonial-footer {
    display: block;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.testimonial-avatar {
    display: none !important;
}

.initials-jc {
    background-color: rgba(144, 181, 163, 0.15);
    color: var(--primary);
}

.initials-dm {
    background-color: rgba(217, 135, 87, 0.12);
    color: var(--accent);
}

.initials-vm {
    background-color: rgba(249, 229, 228, 0.7);
    color: var(--primary);
}

.initials-ao {
    background-color: rgba(78, 96, 116, 0.15);
    color: var(--primary);
}

.initials-ec {
    background-color: rgba(144, 181, 163, 0.15);
    color: var(--primary);
}

.initials-ap {
    background-color: rgba(217, 135, 87, 0.12);
    color: var(--accent);
}

.initials-vg {
    background-color: rgba(249, 229, 228, 0.7);
    color: var(--primary);
}

.initials-ns {
    background-color: rgba(78, 96, 116, 0.15);
    color: var(--primary);
}

.initials-gs {
    background-color: rgba(144, 181, 163, 0.15);
    color: var(--primary);
}

.initials-br {
    background-color: rgba(217, 135, 87, 0.12);
    color: var(--accent);
}

.initials-fc {
    background-color: rgba(249, 229, 228, 0.7);
    color: var(--primary);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
}

.testimonial-tag {
    display: none !important;
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.btn-linkedin-verify {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #0A66C2;
    color: #0A66C2;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-linkedin-verify:hover {
    background-color: #0A66C2;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.15);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.btn-google-verify {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #EA4335;
    color: #EA4335;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-google-verify:hover {
    background-color: #EA4335;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(234, 67, 53, 0.15);
}


/* Casillas de Verificación de Privacidad (Checkbox) */
.form-checkbox-group {
    margin-top: 18px;
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
    text-align: left;
    font-weight: 500;
}

.checkbox-container input {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--accent); /* Color terracota de acento */
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* ==========================================================================
   Responsive Styles (Media Queries)
   ========================================================================== */

/* Tablet y Escritorio Mediano */
@mixin respond-to-tablet {
    @media (max-width: 992px) {
        @content;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 20px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title {
        font-size: 2.1rem;
    }

    /* Hero */
    .hero {
        padding-top: 110px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem); /* Escala de tamaño fluido para evitar desbordes con palabras largas */
        line-height: 1.25;
    }

    .hero-title .text-highlight {
        display: inline; /* Permitir saltos de línea naturales */
        transform: none; /* Quitar rotación en móviles para evitar recortes raros */
        font-size: 1.2em;
        margin-left: 4px;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column; /* Botones apilados verticalmente en móvil */
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 280px; /* Ancho consistente y limpio en pantallas pequeñas */
        text-align: center;
        justify-content: center;
    }

    .hero-image-wrapper {
        order: 2;
        height: 380px;
    }

    .hero-organic-blob.blob-1 {
        width: 240px;
        height: 240px;
    }

    .hero-organic-blob.blob-2 {
        width: 190px;
        height: 190px;
    }

    .hero-organic-blob.blob-3 {
        width: 100px;
        height: 100px;
    }

    .hero-profile-photo {
        max-height: 360px;
    }

    .hero-triskelion-seal {
        bottom: 10px;
        right: 10px;
        width: 65px;
        height: 65px;
    }

    .triskelion-seal-logo {
        width: 40px;
        height: 40px;
    }

    .hero-featured-logo {
        max-width: 240px;
    }

    /* Método */
    .metodo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .metodo-card.highlighted {
        transform: scale(1);
    }
    
    .metodo-card.highlighted:hover {
        transform: translateY(-8px);
    }

    /* Quién Soy */
    .quien-soy .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quien-soy-image-container,
    .quien-soy-highlights-container {
        position: relative !important;
        top: 0 !important;
        padding-right: 0;
        padding-bottom: 0;
        max-width: 440px;
        margin: 40px auto 0 auto;
        order: 2; /* Se coloca debajo del texto en móviles */
    }

    .quien-soy-content {
        order: 1; /* Se coloca arriba de la imagen en móviles */
        width: 100%;
    }

    /* Recursos */
    .recursos-grid,
    .recursos-grid-3,
    .recursos-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Testimonios */
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-img-wrapper {
        height: 260px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Dispositivos Móviles */
@media (max-width: 768px) {
    /* Navbar Responsivo */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(78, 96, 116, 0.06);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-menu.active {
        max-height: 420px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(78, 96, 116, 0.04);
        font-size: 0.95rem;
    }

    .nav-item::after {
        display: none;
    }

    .nav-btn {
        width: 80%;
        text-align: center;
        margin: 15px 0 20px 0;
        padding: 12px 0;
    }

    /* Menú Animación Cruz */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    /* Contacto */
    .contacto-form-wrapper {
        padding: 30px 20px;
    }
    
    /* Modales */
    .modal-body {
        padding: 45px 20px 30px 20px;
    }
    
    .modal-card {
        border-radius: 18px;
    }

    .admin-body {
        padding: 25px 15px;
    }

    .admin-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-admin-export, .btn-admin-clear {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Método NEXO: Detalle de Sesiones y Salvaguardas
   ========================================================================== */

.nexo-details-container {
    margin-top: 80px;
}

.nexo-section-subtitle {
    font-size: 1.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-title);
    position: relative;
}

.nexo-section-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Timeline Base Container */
.nexo-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 60px auto;
    padding: 30px 0;
}

/* El Camino Sugerido (Dashed Line) */
.nexo-timeline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    border-left: 2px dashed rgba(144, 181, 163, 0.45);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    z-index: 1;
}

/* Línea de Progreso Recorrido (Solid Fill) */
.nexo-timeline-path-fill {
    position: absolute;
    width: 2px;
    background-color: var(--accent);
    top: 0;
    left: 50%;
    margin-left: -1px;
    height: 0; /* Updated via Javascript */
    z-index: 2;
    transition: height 0.08s ease-out;
}

/* El Triskelion Viajero */
.nexo-timeline-traveler {
    position: absolute;
    width: 44px;
    height: 44px;
    left: 50%;
    top: 0; /* Updated via Javascript */
    transform: translate(-50%, -50%);
    z-index: 100;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(217, 135, 87, 0.25);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.08s ease-out, transform 0.08s ease-out;
    pointer-events: none;
}

.nexo-traveler-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.08s ease-out;
}

.nexo-timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 5;
}

.nexo-timeline-item:nth-child(odd) {
    left: 0;
}

.nexo-timeline-item:nth-child(even) {
    left: 50%;
}

.nexo-timeline-illustration {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%; /* Matches the item's width (50% of timeline) */
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.illustration-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexo-timeline-item:nth-child(odd) .nexo-timeline-illustration {
    left: 100%;
}

.nexo-timeline-item:nth-child(even) .nexo-timeline-illustration {
    right: 100%;
}

/* Micro-animations for Nexo Timeline Illustrations */
@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(3px, -5px) scale(1.03); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatIcon {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.nexo-timeline-illustration svg .blob-bg {
    transform-origin: center;
    animation: floatBlob 6s ease-in-out infinite;
}

.nexo-timeline-illustration svg .icon-group {
    transform-origin: center;
    animation: floatIcon 4s ease-in-out infinite;
}

.nexo-timeline-dot {
    position: absolute;
    width: 36px;
    height: 36px;
    right: -18px;
    background-color: var(--white);
    border: 3px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nexo-timeline-item:nth-child(even) .nexo-timeline-dot {
    left: -18px;
}

/* Estado Activo / Pasado */
.nexo-timeline-dot.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(217, 135, 87, 0.3);
}

.nexo-timeline-content {
    padding: 25px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(144, 181, 163, 0.15);
    transition: var(--transition);
}

.nexo-timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(63, 98, 91, 0.2);
}

.nexo-session-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    background-color: rgba(63, 98, 91, 0.08);
    color: var(--primary);
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.nexo-timeline-item:nth-child(even) .nexo-session-tag {
    background-color: rgba(217, 135, 87, 0.08);
    color: var(--accent);
}

.nexo-timeline-content h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: var(--font-title);
    font-weight: 600;
}

.nexo-session-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nexo-session-info-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.nexo-session-info-list li::before {
    content: '\f0da'; /* caret right arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent);
    font-size: 0.8rem;
}

.nexo-timeline-item:nth-child(even) .nexo-session-info-list li::before {
    color: var(--primary);
}

/* Safeguards Section */
.nexo-safeguards-section {
    margin-top: 60px;
    padding: 40px 30px;
    background-color: rgba(144, 181, 163, 0.08);
    border-radius: 24px;
    border: 1px solid rgba(144, 181, 163, 0.25);
}

.nexo-safeguards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.nexo-safeguard-card {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(63, 98, 91, 0.04);
    text-align: center;
    transition: var(--transition);
}

.nexo-safeguard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 135, 87, 0.2);
}

.nexo-safeguard-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(217, 135, 87, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 15px auto;
    transition: var(--transition);
}

.nexo-safeguard-card:hover .nexo-safeguard-icon {
    background-color: var(--accent);
    color: var(--white);
}

.nexo-safeguard-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.nexo-safeguard-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsiveness for Timeline and Safeguards */
@media (max-width: 900px) {
    .nexo-timeline::after {
        left: 31px;
    }
    
    .nexo-timeline-path-fill {
        left: 31px;
        margin-left: -1px;
    }
    
    .nexo-timeline-traveler {
        left: 31px;
    }
    
    .nexo-timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .nexo-timeline-illustration {
        display: none !important;
    }
    
    .nexo-timeline-item:nth-child(even) {
        left: 0;
    }
    
    .nexo-timeline-dot {
        left: 12px;
        right: auto;
    }
    
    .nexo-timeline-item:nth-child(even) .nexo-timeline-dot {
        left: 12px;
    }
    
    .nexo-safeguards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nexo-safeguards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Flor Capeletto - Estilos Adicionales para Página de Servicios y Precios
   ========================================================================== */

/* Contenedor de Blobs de Fondo Dinámicos */
.bg-blobs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    animation: floatBlob 35s infinite alternate ease-in-out;
}

.blob-salvia {
    width: 55vw;
    height: 55vw;
    background-color: var(--secondary); /* #90B5A3 */
    top: -15%;
    left: -15%;
    animation-delay: 0s;
}

.blob-durazno {
    width: 60vw;
    height: 60vw;
    background-color: var(--peach); /* #EFAA89 */
    bottom: -20%;
    right: -15%;
    animation-delay: 6s;
}

.blob-bosque {
    width: 40vw;
    height: 40vw;
    background-color: var(--primary); /* #3F625B */
    top: 35%;
    left: 55%;
    animation-delay: 12s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(5vw, -6vw) scale(1.08) rotate(120deg);
    }
    66% {
        transform: translate(-4vw, 7vw) scale(0.92) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

/* Gradientes de Texto Premium */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 20%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Selector de Moneda Segmentado */
.currency-selector-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: -20px auto 55px auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.currency-selector-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.currency-selector {
    display: inline-flex;
    background: rgba(63, 98, 91, 0.06);
    border: 1px solid rgba(63, 98, 91, 0.12);
    padding: 6px;
    border-radius: 50px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(63, 98, 91, 0.05);
}

.currency-btn {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.currency-btn.active {
    color: var(--white);
    background-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.currency-btn:hover:not(.active) {
    color: var(--primary);
    background-color: rgba(63, 98, 91, 0.05);
}

/* Grids de Precios */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 45px;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 480px));
    justify-content: center;
    gap: 35px;
    margin-bottom: 60px;
}

/* Tarjetas de Precios Glassmorphism */
.pricing-card {
    background: rgba(252, 251, 249, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(144, 181, 163, 0.25);
    border-radius: 28px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(63, 98, 91, 0.12), 0 10px 25px rgba(217, 135, 87, 0.04);
    border-color: rgba(217, 135, 87, 0.35);
}

.pricing-card.highlighted {
    background: rgba(252, 251, 249, 0.75);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.pricing-card.highlighted:hover {
    box-shadow: 0 25px 50px rgba(63, 98, 91, 0.15), 0 15px 30px rgba(217, 135, 87, 0.1);
}

/* Imagen de las Tarjetas */
.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.recurso-card .card-image-wrapper {
    border-radius: 0;
    margin-bottom: 0;
    height: 180px;
    box-shadow: none;
    border-bottom: 1px solid rgba(78, 96, 116, 0.05);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .card-image,
.recurso-card:hover .card-image {
    transform: scale(1.06);
}

/* Badge Recomendado */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-accent);
    z-index: 5;
}

/* Contenido de las Tarjetas */
.card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
    text-align: left;
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: left;
    display: block;
}

.card-price-box {
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px dashed rgba(63, 98, 91, 0.1);
    border-bottom: 1px dashed rgba(63, 98, 91, 0.1);
    text-align: left;
}

.card-price {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}

.card-price-cuotas {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: left;
}

/* Botones de Tarjetas */
.btn-card-buy {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.92rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.btn-card-buy:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-card.highlighted .btn-card-buy {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.pricing-card.highlighted .btn-card-buy:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* Asymmetrical Capsule Details Button (Competitor-style) */
.btn-card-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: #242B28; /* Dark charcoal color */
    color: #FEEFEA; /* Cream/Peach soft tone */
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px 50px 50px 0; /* Asymmetrical curves */
    border: none;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: 15px;
    box-shadow: var(--shadow-sm);
}

.btn-card-details:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-card-details i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.btn-card-details.active {
    border-radius: 50px;
    background-color: var(--accent);
    color: var(--white);
}

.btn-card-details.active i {
    transform: rotate(45deg);
}

/* Detalles Desplegables de las Tarjetas (Ocultos en favor del Modal) */
.card-details-panel {
    display: none !important;
}

.detail-block {
    margin-bottom: 18px;
}

.detail-block:last-child {
    margin-bottom: 0;
}

.detail-block-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.detail-block-title i {
    font-size: 0.9rem;
    color: var(--accent);
}

.detail-block-desc {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.5;
    padding-left: 22px;
}

/* Tarjeta Especial Método NEXO y Migración */
.pricing-card.special-featured {
    background: rgba(252, 251, 249, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Formas de Pago Glassmorphism */
.pagos-seccion {
    background: rgba(252, 251, 249, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 60px 40px;
    border-radius: 28px;
    border: 1px solid rgba(144, 181, 163, 0.25);
    margin-bottom: 80px;
    text-align: center;
}

.pagos-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.pagos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pago-item {
    background: rgba(252, 251, 249, 0.7);
    padding: 25px 15px;
    border-radius: 18px;
    border: 1px solid rgba(144, 181, 163, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pago-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 135, 87, 0.35);
}

.pago-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.pago-item h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.pago-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* FAQs Acordeón Glassmorphism */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(252, 251, 249, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(144, 181, 163, 0.2);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(144, 181, 163, 0.4);
    background: rgba(252, 251, 249, 0.75);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.faq-trigger:hover {
    color: var(--accent);
}

.faq-trigger i {
    font-size: 0.8rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: rgba(217, 135, 87, 0.35);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    opacity: 0;
    padding: 0 25px;
}

.faq-item.active .faq-content {
    max-height: 250px;
    opacity: 1;
    padding-bottom: 20px;
    border-top: 1px dashed rgba(63, 98, 91, 0.08);
    padding-top: 15px;
}

.faq-content p {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* Responsividad para Servicios */
@media (max-width: 992px) {
    .pricing-grid,
    .specialized-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pagos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid,
    .specialized-grid {
        grid-template-columns: 1fr;
    }
    
    .pagos-grid {
        grid-template-columns: 1fr;
    }
}

/* Contenedor de Etiquetas de Precios en Tarjetas */
.pricing-tags-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-bottom: 25px;
}

.price-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(63, 98, 91, 0.05);
    border: 1px solid rgba(63, 98, 91, 0.12);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.price-pill:hover {
    background: rgba(63, 98, 91, 0.1);
    transform: translateY(-2px);
}

.price-pill.highlighted-pill {
    background: rgba(217, 135, 87, 0.08);
    border-color: rgba(217, 135, 87, 0.35);
    color: var(--accent);
}

.price-pill.highlighted-pill:hover {
    background: rgba(217, 135, 87, 0.12);
}

/* Service Details Modal Specific Styles */
.service-modal-header {
    background-color: var(--primary);
}
.service-modal-left-col .detail-block {
    margin-bottom: 25px;
    background: rgba(252, 251, 249, 0.6);
    padding: 20px 25px;
    border-radius: 18px;
    border: 1px solid rgba(144, 181, 163, 0.2);
}
.service-modal-left-col .detail-block-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-modal-left-col .detail-block-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-main);
}
.service-modal-left-col .detail-block-desc strong {
    color: var(--primary);
}
.service-modal-right-col .pricing-tags-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}
.service-modal-right-col .price-pill {
    width: 100%;
    justify-content: center;
    font-weight: 600;
    font-size: 0.92rem;
}
.service-modal-right-col .detail-block-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.service-modal-right-col .detail-block-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Estilos para el selector de moneda y precios dinámicos en el modal */
.modal-pricing-box {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

#service-modal-price {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    transition: all 0.3s ease;
}

#service-modal-price-note {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    background-color: rgba(217, 135, 87, 0.08);
    padding: 2px 8px;
    border-radius: 30px;
    border: 1px solid rgba(217, 135, 87, 0.2);
    margin-left: 8px;
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#modal-currency-select {
    width: 100%;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid rgba(144, 181, 163, 0.25);
    background-color: var(--white);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%25233F625B%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px auto;
    padding-right: 28px;
}

#modal-currency-select:hover {
    border-color: rgba(63, 98, 91, 0.5);
    background-color: rgba(252, 251, 249, 0.8);
}

#modal-currency-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 135, 87, 0.2);
    background-color: var(--white);
}

.modal-currency-selector-wrapper label {
    font-family: var(--font-body);
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Estilos generales del modal (Layout de una sola columna con precios al final) */
.service-modal-content-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
}

.service-modal-left-col {
    width: 100%;
}

.service-modal-right-col {
    background: rgba(252, 251, 249, 0.6);
    border: 1px solid rgba(144, 181, 163, 0.15);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    width: 100%;
}

.service-modal-right-col-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Responsividad para el Modal de Servicios */
@media (max-width: 768px) {
    .service-modal-content-grid {
        padding: 20px !important;
        gap: 20px !important;
    }
    .service-modal-header {
        height: 180px !important;
    }
    #service-modal-title {
        font-size: 1.6rem !important;
    }
    .service-modal-right-col {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 20px !important;
        gap: 15px !important;
        position: static !important;
    }
    .service-modal-right-col-pricing {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
}

/* ==========================================================================
   Animaciones de Desplazamiento (Scroll Reveal)
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 0.85s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: opacity, transform;
}

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

/* Retardo Escalonado (Stagger) para grids de tarjetas */
.recursos-grid-3 .recurso-card:nth-child(1) { transition-delay: 0.1s; }
.recursos-grid-3 .recurso-card:nth-child(2) { transition-delay: 0.25s; }
.recursos-grid-3 .recurso-card:nth-child(3) { transition-delay: 0.4s; }

.recursos-grid-2 .recurso-card:nth-child(1) { transition-delay: 0.1s; }
.recursos-grid-2 .recurso-card:nth-child(2) { transition-delay: 0.25s; }

.recursos-grid .recurso-card:nth-child(1) { transition-delay: 0.1s; }
.recursos-grid .recurso-card:nth-child(2) { transition-delay: 0.25s; }

.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.25s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.4s; }

.specialized-grid .pricing-card:nth-child(1) { transition-delay: 0.1s; }
.specialized-grid .pricing-card:nth-child(2) { transition-delay: 0.25s; }

.blog-grid .blog-card:nth-child(1) { transition-delay: 0.1s; }
.blog-grid .blog-card:nth-child(2) { transition-delay: 0.25s; }

/* Snappier scroll reveal transitions on mobile devices */
@media (max-width: 768px) {
    .reveal-on-scroll {
        transform: translateY(15px);
        transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), 
                    transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    /* Disable transition delays on mobile to show cards instantly together */
    .recursos-grid-3 .recurso-card:nth-child(n),
    .recursos-grid-2 .recurso-card:nth-child(n),
    .recursos-grid .recurso-card:nth-child(n),
    .pricing-grid .pricing-card:nth-child(n),
    .specialized-grid .pricing-card:nth-child(n),
    .blog-grid .blog-card:nth-child(n) {
        transition-delay: 0s !important;
    }
}




