/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores basados en los logos de Javi Pérez */
    --primary-color: #2563eb; /* Azul principal */
    --primary-dark: #1e40af;
    --secondary-color: #ec4899; /* Rosa/Pink */
    --accent-color: #f472b6; /* Rosa claro */
    --gray-color: #6b7280; /* Gris */
    --gray-dark: #4b5563;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animaciones base */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

/* Custom Cursor - Círculo Innovador */
* {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                border-width 0.2s ease,
                background 0.2s ease,
                opacity 0.2s ease;
    mix-blend-mode: difference;
    will-change: transform;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.custom-cursor.cursor-hover {
    width: 60px;
    height: 60px;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.custom-cursor.cursor-hover::before {
    transform: translate(-50%, -50%) scale(1.5);
}

.custom-cursor.cursor-click {
    width: 15px;
    height: 15px;
    border-width: 3px;
    border-color: rgba(255, 255, 255, 1);
}

.custom-cursor.cursor-click::before {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Ocultar cursor en dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }
    
    .custom-cursor {
        display: none !important;
    }
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 110px; /* Espacio para el header fijo */
    width: 100%;
    max-width: 100vw;
}

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
}

.logo-link:hover {
    transform: scale(1.08);
    background: rgba(37, 99, 235, 0.05);
}

.logo-link:active {
    transform: scale(0.98);
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover .logo-img {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

/* Menú hamburguesa */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

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

/* Nav link disabled / Coming soon */
.nav-link-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nav-link-disabled:hover {
    color: var(--text-dark);
}

.nav-link-disabled:hover::after {
    width: 0;
}

.coming-soon {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 2px 6px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    display: block;
}

/* Overlay para menú móvil */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Header */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .nav-link-disabled {
        flex-direction: column;
        align-items: flex-start;
    }

    .coming-soon {
        font-size: 0.7rem;
        margin-left: 0;
        margin-bottom: 4px;
    }

    .mobile-menu-overlay {
        display: block;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }

    .header-content {
        padding: 8px 20px;
    }

    .logo-img {
        height: 70px;
    }

    .nav {
        width: 100%;
        right: -100%;
    }

    .nav.active {
        right: 0;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 15px;
    }

    .logo-img {
        height: 60px;
    }

    .nav {
        width: 100%;
        padding: 90px 20px 20px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background-image: 
        /* Líneas diagonales sutiles */
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
        /* Gradiente principal - rosa más suave */
        linear-gradient(135deg, #2563eb 0%, #1e40af 25%, #d946ef 50%, #c026d3 75%, #2563eb 100%);
    background-size: 100px 100px, 100px 100px, 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

/* Animación de gradiente */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Efecto de ondas animadas */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 70, 239, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(107, 114, 128, 0.2) 0%, transparent 50%);
    animation: waveMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waveMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.9;
    }
}

/* Partículas flotantes y puntos brillantes */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Puntos brillantes grandes */
        radial-gradient(3px 3px at 15% 25%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 35% 45%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(4px 4px at 55% 15%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 75% 65%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(3px 3px at 90% 35%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 25% 75%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(3px 3px at 65% 85%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 85% 10%, rgba(255, 255, 255, 0.6), transparent),
        /* Puntos pequeños */
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 40% 60%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 60% 40%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 70%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 70% 20%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 10% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 50% 90%, rgba(255, 255, 255, 0.5), transparent),
        /* Más puntos dispersos */
        radial-gradient(1.5px 1.5px at 12% 60%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 45% 25%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 68% 55%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 88% 80%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 22% 15%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 78% 45%, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 200%;
    animation: particleFloat 25s ease infinite;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes particleFloat {
    0% {
        background-position: 0% 0%;
        opacity: 0.8;
    }
    25% {
        background-position: 100% 50%;
        opacity: 0.6;
    }
    50% {
        background-position: 50% 100%;
        opacity: 0.9;
    }
    75% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
    100% {
        background-position: 0% 0%;
        opacity: 0.8;
    }
}

/* Círculos decorativos flotantes */
.hero .container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: rotateCircle 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.hero .container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: rotateCircle 15s linear infinite reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero responsive */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 60px 20px 30px;
    }
    
    .hero-logo {
        max-width: 220px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .hero-bullets {
        margin: 20px auto;
    }
    
    .hero-bullets li {
        padding: 10px 0;
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        margin: 25px 0;
        gap: 15px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 50px 20px 25px;
    }
    
    .hero-logo {
        max-width: 180px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-bullets {
        margin: 15px auto;
    }
    
    .hero-bullets li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        margin: 20px 0;
        gap: 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .microfrase {
        margin-top: 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px 20px;
    }
    
    .hero-logo {
        max-width: 150px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-bullets li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    filter: brightness(0) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 0.8s ease-out;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-logo {
        max-width: 250px;
        margin-bottom: 20px;
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 1;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-bullets {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 20px auto;
    padding: 0;
}

.hero-bullets li {
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.hero-bullets .icon {
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bullets li:hover .icon {
    transform: scale(1.1) translateX(3px);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.icon-btn {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px 0 rgba(37, 99, 235, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px 0 rgba(37, 99, 235, 0.15);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

.microfrase {
    margin-top: 20px;
    font-style: italic;
    opacity: 0.85;
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 1;
    transition: none;
}

.section-title:hover::after {
    opacity: 1;
    width: 100px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Contexto Section */
.contexto {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.contexto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.dolores-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.dolor-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid #ef4444;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.dolor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    transition: left 0.5s;
}

.dolor-card:hover::before {
    left: 100%;
}

.dolor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dolor-card .icon-card {
    width: 24px;
    height: 24px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.dolor-card:hover .icon-card {
    transform: translateX(3px);
}

.dolor-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.cierre-positivo {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Puerta de Entrada */
.puerta-entrada {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Banderas flotantes en el fondo */
.banderas-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bandera-flotante {
    position: absolute;
    opacity: 0.12;
    filter: blur(1px);
    will-change: transform;
}

.bandera-img-flotante {
    width: 150px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Posicionamiento inicial de cada bandera */
.bandera-argentina {
    top: 10%;
    left: 5%;
    animation: moverBandera1 20s ease-in-out infinite;
}

.bandera-uruguay {
    top: 15%;
    right: 8%;
    animation: moverBandera2 25s ease-in-out infinite;
}

.bandera-chile {
    bottom: 20%;
    left: 10%;
    animation: moverBandera3 22s ease-in-out infinite;
}

.bandera-paraguay {
    bottom: 15%;
    right: 5%;
    animation: moverBandera4 18s ease-in-out infinite;
}

/* Animaciones de movimiento aleatorio para cada bandera */
@keyframes moverBandera1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(80px, 60px) rotate(5deg);
    }
    50% {
        transform: translate(120px, -40px) rotate(-3deg);
    }
    75% {
        transform: translate(40px, -80px) rotate(4deg);
    }
}

@keyframes moverBandera2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-100px, 80px) rotate(-5deg);
    }
    50% {
        transform: translate(-60px, -50px) rotate(3deg);
    }
    75% {
        transform: translate(-140px, -30px) rotate(-4deg);
    }
}

@keyframes moverBandera3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(90px, -70px) rotate(4deg);
    }
    50% {
        transform: translate(50px, 90px) rotate(-5deg);
    }
    75% {
        transform: translate(130px, 20px) rotate(3deg);
    }
}

@keyframes moverBandera4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-70px, -90px) rotate(-4deg);
    }
    50% {
        transform: translate(-110px, 50px) rotate(5deg);
    }
    75% {
        transform: translate(-30px, 70px) rotate(-3deg);
    }
}

.paises-lista {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pais-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pais-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.bandera-pais {
    width: 60px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

.pais-nombre {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.paises {
    font-size: 1.3rem;
    text-align: center;
    margin: 30px 0 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.icon-inline {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}

.paises:hover .icon-inline {
    transform: translateY(-2px);
}

.icon-inline-small {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    flex-shrink: 0;
    margin-right: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipo-areas:hover .icon-inline-small {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.paises-desc {
    text-align: center;
    color: var(--text-light);
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Etapas */
.etapas {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.etapas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.etapas-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.etapa-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.etapa-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.etapa-card:hover::after {
    opacity: 1;
}

.etapa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.etapa-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.etapa-card {
    position: relative;
}

.icon-etapa {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.etapa-card:hover .icon-etapa {
    transform: translateY(-2px);
}

.etapa-card ul {
    list-style: none;
    margin: 20px 0 30px;
}

.etapa-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.etapa-card .icon-list {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.etapa-card ul li:hover .icon-list {
    transform: translateX(3px);
}

/* Qué Hacemos */
.que-hacemos {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.que-hacemos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, transparent 30%),
        linear-gradient(225deg, rgba(236, 72, 153, 0.02) 0%, transparent 30%);
    pointer-events: none;
}

.enfoque {
    text-align: center;
    font-size: 1.3rem;
    margin: 30px 0 40px;
    color: var(--text-dark);
    line-height: 1.8;
}

.hacemos-bullets {
    list-style: none;
    max-width: 700px;
    margin: 40px auto;
    padding: 0;
}

.hacemos-bullets li {
    padding: 20px 0;
    padding-left: 50px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.hacemos-bullets .icon-star {
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    color: var(--secondary-color);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
}

.hacemos-bullets li:hover .icon-star {
    transform: scale(1.1) translateX(3px);
}

/* Planes */
.planes {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.planes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('logo/fondos/Planes Claros.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.plan-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-plan {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.plan-card:hover .icon-plan {
    transform: translateY(-2px);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.plan-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.plan-incluye {
    margin-top: 20px;
    color: var(--text-dark) !important;
}

.plan-card ul {
    list-style: none;
    margin: 15px 0 30px;
}

.plan-card ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.plan-card .icon-check {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card ul li:hover .icon-check {
    transform: translateX(3px);
}

/* Mentorías */
/* Diferencial Javi Pérez - Sección Unificada */
.diferencial {
    background-image: url('logo/fondos/MARCA JAVIER PEREZ-23.jpg');
    background-size: 40% auto;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.diferencial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.diferencial .container {
    position: relative;
    z-index: 1;
}

.diferencial-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.diferencial-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.diferencial-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 30px 0 25px;
    color: var(--text-dark);
}

.diferencial-experiencia {
    margin-bottom: 50px;
}

.diferencial-list {
    list-style: none;
    max-width: 800px;
    margin: 40px auto;
    padding: 0;
}

.diferencial-list li {
    padding: 20px 0;
    padding-left: 50px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.diferencial-list .icon-diferencial {
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

.diferencial-list li:hover .icon-diferencial {
    transform: translateX(5px) scale(1.1);
}

/* Lista de equipo en 2 columnas */
.equipo-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    max-width: 900px !important;
}

.equipo-list li {
    padding: 15px 0;
    padding-left: 50px;
}

@media (max-width: 768px) {
    .equipo-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.diferencial-mentorias {
    margin: 50px 0;
}

.mentorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mentoria-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.mentoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(244, 114, 182, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.mentoria-card:hover::before {
    opacity: 1;
}

.mentoria-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--secondary-color);
}

.icon-mentoria {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin: 0 auto 15px;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.mentoria-card:hover .icon-mentoria {
    transform: translateY(-4px) scale(1.1);
    color: var(--secondary-color);
    filter: drop-shadow(0 4px 8px rgba(236, 72, 153, 0.3));
}

.mentoria-card h3,
.mentoria-card h4 {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.mentoria-card:hover h3,
.mentoria-card:hover h4 {
    color: var(--secondary-color);
}

.mentoria-card h3,
.mentoria-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

.diferencial-cta {
    text-align: center;
    margin-top: 40px;
}


/* Marcas / Partners */
.marcas {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.marcas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
        linear-gradient(225deg, rgba(236, 72, 153, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(107, 114, 128, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.marcas-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Carrusel de Marcas */
.marcas-carousel-wrapper {
    overflow: hidden;
    margin: 30px 0;
    position: relative;
}

.marcas-carousel {
    overflow: hidden;
    width: 100%;
}

.marcas-carousel-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    will-change: transform;
}

.marcas-carousel-left .marcas-carousel-track {
    animation: scrollLeft 30s linear infinite;
}

.marcas-carousel-right .marcas-carousel-track {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.marca-item {
    background: var(--bg-white);
    padding: 15px 10px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    min-width: 180px;
    flex-shrink: 0;
    cursor: pointer;
}

.marca-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.marca-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.marca-item:hover::before {
    opacity: 1;
}

.marca-item:hover::after {
    transform: scaleX(1);
}

.marca-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.marca-logo {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.8);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.marca-item:hover .marca-logo {
    filter: grayscale(0%) opacity(1);
}


/* Equipo */
.equipo {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.equipo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(37, 99, 235, 0.02) 49%, rgba(37, 99, 235, 0.02) 51%, transparent 52%);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.4;
}

.equipo-areas {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Testimonios */
.testimonios {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.testimonios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 40%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonio-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonio-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.testimonio-card:hover::after {
    transform: scaleX(1);
}

.testimonio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-testimonio {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    margin: 0 auto 15px;
    display: block;
    transition: transform 0.3s ease;
}

.testimonio-card:hover .icon-testimonio {
    transform: translateY(-2px);
}

.testimonio-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonio-card p {
    color: var(--text-light);
}

/* FAQ */
.faq {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.015) 0%, transparent 30%),
        linear-gradient(225deg, rgba(236, 72, 153, 0.015) 0%, transparent 30%);
    pointer-events: none;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-faq {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item:hover .icon-faq {
    transform: translateX(2px);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Cierre Final */
.cierre-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cierre-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    pointer-events: none;
}

.cierre-final .section-title {
    color: white;
    position: relative;
    z-index: 1;
}

.cierre-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bg-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links li:hover .footer-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}


/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}


/* Glassmorphism effect para algunos elementos */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Efectos de hover mejorados en texto */
.enfoque strong {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.enfoque strong:hover {
    transform: scale(1.05);
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Animación de entrada para el hero description */
.hero-description {
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Mejoras en las transiciones de iconos */
.icon,
.icon-star,
.icon-check,
.icon-list,
.icon-autoridad,
.icon-faq,
.icon-card,
.icon-etapa,
.icon-plan,
.icon-testimonio,
.icon-mentoria {
    will-change: transform;
}

/* Efecto de brillo en hover para cards */
.dolor-card:hover,
.etapa-card:hover,
.plan-card:hover,
.testimonio-card:hover,
.mentoria-card:hover {
    position: relative;
}

/* Efecto de brillo removido para hovers más sutiles */

/* Mejoras en responsive para animaciones */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   RESPONSIVE - MEDIA QUERIES ORGANIZADOS
   ============================================ */

/* Tablet y pantallas medianas (968px - 769px) */
@media (max-width: 968px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-text {
        font-size: 1.05rem;
    }

    .dolores-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .etapas-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .mentorias-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .paises-lista {
        gap: 25px;
    }

    .pais-item {
        padding: 15px;
    }

    .bandera-pais {
        width: 50px;
    }

    .pais-nombre {
        font-size: 1.1rem;
    }

    .diferencial-title {
        font-size: 2.2rem;
    }

    .diferencial-subtitle {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Móviles grandes y tablets pequeñas (768px - 481px) */
@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }

    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .section-title::after {
        width: 80px;
    }

    .section-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Cards */
    .dolores-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .dolor-card {
        padding: 25px;
    }

    .etapas-cards {
        gap: 25px;
        margin-top: 40px;
    }

    .etapa-card {
        padding: 30px;
    }

    .planes-grid {
        gap: 25px;
        margin-top: 40px;
    }

    .plan-card {
        padding: 30px;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .testimonio-card {
        padding: 25px;
    }

    .mentorias-grid {
        gap: 20px;
        margin: 30px 0;
    }

    .mentoria-card {
        padding: 25px;
    }

    /* Países */
    .paises-lista {
        gap: 20px;
        margin: 30px 0;
    }

    .pais-item {
        padding: 15px;
    }

    .bandera-pais {
        width: 50px;
    }

    .pais-nombre {
        font-size: 1rem;
    }

    .paises-desc {
        font-size: 1rem;
        margin: 25px 0;
    }

    /* Diferencial */
    .diferencial-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .diferencial-subtitle {
        font-size: 1.2rem;
        margin: 25px 0 20px;
    }

    .diferencial-list {
        margin: 30px auto;
    }

    .diferencial-list li {
        padding: 15px 0;
        padding-left: 45px;
        font-size: 1rem;
    }

    .diferencial-list .icon-diferencial {
        width: 28px;
        height: 28px;
    }

    /* Marcas */
    .marca-item {
        min-height: 100px;
        min-width: 150px;
        padding: 12px 8px;
    }

    .marcas-carousel-track {
        gap: 20px;
    }

    .marca-logo {
        max-height: 80px;
    }

    /* FAQ */
    .faq-item {
        padding: 25px;
        padding-left: 55px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }

    .icon-faq {
        left: 18px;
        top: 25px;
        width: 22px;
        height: 22px;
    }

    /* Footer */
    .footer {
        padding: 50px 20px 25px;
    }

    .footer-content {
        gap: 35px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-img {
        height: 100px;
    }

    .footer-social {
        justify-content: center;
    }

    /* Reducir efectos 3D en móvil */
    .plan-card,
    .etapa-card {
        transform-style: flat;
    }

    .plan-card:hover,
    .etapa-card:hover {
        transform: translateY(-5px) scale(1);
    }

    /* WhatsApp button */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
    body {
        padding-top: 80px;
    }

    section {
        padding: 50px 15px;
    }

    .container {
        padding: 0 15px;
    }

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

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .section-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

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

    .hero-description {
        font-size: 0.85rem;
    }

    /* Cards */
    .dolores-cards {
        gap: 15px;
        margin: 30px 0;
    }

    .dolor-card {
        padding: 20px;
    }

    .dolor-card p {
        font-size: 1rem;
    }

    .etapa-card {
        padding: 25px;
    }

    .etapa-card h3 {
        font-size: 1.5rem;
    }

    .plan-card {
        padding: 25px;
    }

    .plan-card h3 {
        font-size: 1.3rem;
    }

    .testimonio-card {
        padding: 20px;
    }

    .testimonio-card h4 {
        font-size: 1.1rem;
    }

    .mentoria-card {
        padding: 20px;
    }

    .mentoria-card h4 {
        font-size: 1.1rem;
    }

    /* Países */
    .paises-lista {
        gap: 15px;
        margin: 25px 0;
    }

    .pais-item {
        padding: 12px;
    }

    .bandera-pais {
        width: 40px;
    }

    .pais-nombre {
        font-size: 0.95rem;
    }

    .paises-desc {
        font-size: 0.95rem;
        margin: 20px 0;
    }

    /* Diferencial */
    .diferencial-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .diferencial-subtitle {
        font-size: 1.1rem;
        margin: 20px 0 15px;
    }

    .diferencial-list li {
        padding: 12px 0;
        padding-left: 40px;
        font-size: 0.95rem;
    }

    .diferencial-list .icon-diferencial {
        width: 24px;
        height: 24px;
    }

    /* Marcas */
    .marca-item {
        min-height: 80px;
        min-width: 120px;
        padding: 10px 8px;
    }

    .marcas-carousel-track {
        gap: 15px;
    }

    .marca-logo {
        max-height: 65px;
    }

    /* FAQ */
    .faq-item {
        padding: 20px;
        padding-left: 50px;
        margin-bottom: 15px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .icon-faq {
        left: 15px;
        top: 20px;
        width: 20px;
        height: 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    /* Botones */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cierre-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    /* Enfoque */
    .enfoque {
        font-size: 1.1rem;
        margin: 25px 0 30px;
    }

    .hacemos-bullets li {
        padding: 15px 0;
        padding-left: 45px;
        font-size: 1rem;
    }

    .hacemos-bullets .icon-star {
        width: 24px;
        height: 24px;
    }

    .cierre-positivo {
        font-size: 1.1rem;
        margin-top: 30px;
    }
}

/* Móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-logo {
        max-width: 120px;
    }

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

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .dolor-card,
    .etapa-card,
    .plan-card {
        padding: 18px;
    }

    .pais-item {
        padding: 10px;
    }

    .bandera-pais {
        width: 35px;
    }
}
