/* ============================================
   VENDORA SOLUTIONS - PREMIUM WEB DESIGN
   Estilo: Palantir (oscuro tech) + Phantom (glassmorphism)
   ============================================ */

/* Variables globales */
:root {
    --primary-color: #2e45a5;
    --primary-dark: #1f2f7a;
    --accent-cyan: #00d9ff;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0e27;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==========================================
   NAVEGACIÓN
   ========================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(46, 69, 165, 0.3);
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 69, 165, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    gap: 5px;
    cursor: pointer;
}

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

/* ==========================================
   HERO - ESTILO PALANTIR
   ========================================== */
.hero {
    background: var(--bg-dark);
    color: white;
    padding: 140px 20px 100px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(46, 69, 165, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 69, 165, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(46, 69, 165, 0.5);
    z-index: 2;
}

.hero-corner-tl {
    top: 80px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.hero-corner-tr {
    top: 80px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.hero-corner-bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.hero-corner-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

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

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

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a0b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.tech-highlight {
    color: var(--accent-cyan);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
    position: relative;
    padding-left: 1rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

.stat-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-left: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-form-wrapper {
    position: relative;
}

.hero-form {
    background: rgba(20, 25, 50, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(46, 69, 165, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(46, 69, 165, 0.1) 50%, 
        transparent 100%);
    animation: formShimmer 3s infinite;
}

@keyframes formShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

.contact-form-hero input {
    width: 100%;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(46, 69, 165, 0.4);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(10, 14, 39, 0.6);
    color: white;
    transition: all 0.3s;
}

.contact-form-hero input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-hero input:focus {
    border-color: var(--accent-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    background: rgba(10, 14, 39, 0.8);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
}

.checkbox-label a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a55c5 0%, #2a3a8c 100%);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================
   SOLUCIONES - GLASSMORPHISM PREMIUM
   ========================================== */
.soluciones {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.soluciones::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(46, 69, 165, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.solutions-carousel-wrapper {
    position: relative;
    padding: 0 80px;
}

.solutions-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.solutions-carousel::-webkit-scrollbar {
    display: none;
}

.solution-card {
    flex: 0 0 auto;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    scroll-snap-align: start;
    border: 1px solid rgba(46, 69, 165, 0.1);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(46, 69, 165, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.solution-card.featured {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 2px solid rgba(46, 69, 165, 0.3);
}

.solution-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    animation: pulse-badge 2.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
    }
}

.solution-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.solution-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
}

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

.solution-card:hover .solution-image img {
    transform: scale(1.15);
}

.solution-content {
    padding: 2.5rem;
}

.solution-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.solution-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    min-height: 80px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 69, 165, 0.15);
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(46, 69, 165, 0.35);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 2.5rem;
    padding: 0 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(46, 69, 165, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    width: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(46, 69, 165, 0.4);
}

/* ==========================================
   SERVICIOS ADICIONALES
   ========================================== */
.servicios {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.servicio-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(46, 69, 165, 0.1);
    box-shadow:
        0 10px 40px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 60px rgba(46, 69, 165, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(46, 69, 165, 0.2);
}

.servicio-icon {
    width: 100%;
    height: 280px;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.servicio-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(46, 69, 165, 0.1) 100%);
}

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

.servicio-card:hover .servicio-icon img {
    transform: scale(1.1);
}

.servicio-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.servicio-card p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Tagline IA */
.ia-tagline {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.ia-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(46, 69, 165, 0.05) 50%, 
        transparent 100%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.tagline-text {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-cyan) 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 900;
}

/* ==========================================
   ECOSISTEMA VENDORA
   ========================================== */
.ecosistema {
    padding: 0;
    background: transparent;
    color: white;
}

.ecosistema-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.ecosistema-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(10deg); }
}

.ecosistema-header {
    margin-bottom: 3rem;
}

.ecosistema-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
    font-weight: 600;
    text-align: center;
}

.ecosistema-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 250px;
}

.ecosistema-main {
    position: relative;
    z-index: 1;
}

.ecosistema-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ecosistema-description {
    font-size: 1.4rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
}

.ecosistema-counter {
    position: relative;
    z-index: 1;
}

.counter-number {
    font-size: 8rem;
    font-weight: 200;
    opacity: 0.3;
    font-family: 'Courier New', monospace;
    letter-spacing: -5px;
}

.ecosistema-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.eco-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.eco-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.eco-progress {
    flex: 1;
    max-width: 500px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.eco-progress-bar {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 20%;
    transition: all 0.3s ease;
}

/* ==========================================
   TESTIMONIOS
   ========================================== */
.testimonios {
    padding: 100px 20px;
    background: var(--bg-light);
}

.testimonios-slider {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    height: 400px;
}

.testimonio-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(46, 69, 165, 0.1);
}

.testimonio-card.active {
    opacity: 1;
    visibility: visible;
}

.testimonio-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonio-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonio-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-testimonio {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-testimonio .testimonio-text {
    color: white;
    opacity: 0.95;
}

.cta-testimonio .testimonio-author strong,
.cta-testimonio .testimonio-author span {
    color: white;
}

.testimonios-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.test-prev,
.test-next {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.test-prev:hover,
.test-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.test-dots {
    display: flex;
    gap: 10px;
}

.test-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(46, 69, 165, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.test-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================
   CTA FINAL - FORMULARIO COMPLETO
   ========================================== */
.cta-final {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #151932 100%);
    color: white;
}

.cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a0b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contacto-completo-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 25, 50, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(46, 69, 165, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(46, 69, 165, 0.4);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(10, 14, 39, 0.6);
    color: white;
    font-family: inherit;
    transition: all 0.3s;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    background: rgba(10, 14, 39, 0.8);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.checkbox-label-dark {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label-dark input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
}

.checkbox-label-dark a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.contacto-alternativo {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contacto-alternativo a {
    color: var(--accent-cyan);
    text-decoration: underline;
    font-weight: 700;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 200px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: white;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--accent-cyan);
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 968px) {
    .hero-content,
    .servicios-grid,
    .footer-content,
    .ecosistema-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-corner {
        width: 60px;
        height: 60px;
    }

    .solutions-carousel-wrapper {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .solution-card {
        width: 320px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .ecosistema-title {
        font-size: 2.5rem;
    }

    .counter-number {
        font-size: 5rem;
    }

    .ecosistema-description {
        font-size: 1.1rem;
    }

    .testimonio-card {
        flex-direction: column;
        text-align: center;
        height: auto;
        min-height: 450px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .tagline-text {
        font-size: 1.8rem;
    }

    .gradient-text {
        font-size: 2.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .solution-card {
        width: 280px;
    }

    .ecosistema-title {
        font-size: 2rem;
    }

    .counter-number {
        font-size: 4rem;
    }

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

    .tagline-text {
        font-size: 1.4rem;
    }

    .gradient-text {
        font-size: 1.8rem;
    }

    .cta-header h2 {
        font-size: 2rem;
    }

    .contacto-completo-form {
        padding: 2rem;
    }
}

/* ==========================================
   SOLUCIONES - GRID VERSION (no carrusel)
   ========================================== */
.solutions-grid-container {
    padding: 60px 20px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card-v2 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(46, 69, 165, 0.1);
}

.solution-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.solution-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(46, 69, 165, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.solution-card-v2.featured {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 2px solid rgba(46, 69, 165, 0.2);
}

.solution-badge-alt {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-category {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.solution-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(46, 69, 165, 0.1);
    border-bottom: 1px solid rgba(46, 69, 165, 0.1);
}

.meta-item {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* ==========================================
   SERVICIOS - MEJORADO
   ========================================== */
.servicio-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.servicio-includes {
    background: rgba(46, 69, 165, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.servicio-includes h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.servicio-includes ul {
    list-style: none;
    padding: 0;
}

.servicio-includes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.servicio-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.servicio-caso {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-left: 3px solid var(--primary-color);
}

/* ==========================================
   PROCESO / CÓMO TRABAJAMOS
   ========================================== */
.proceso {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.proceso-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(46, 69, 165, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.proceso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 69, 165, 0.15);
    border-color: rgba(46, 69, 165, 0.2);
}

.proceso-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.proceso-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.proceso-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* ==========================================
   CASOS DE ÉXITO - NUEVO DISEÑO
   ========================================== */
.casos {
    padding: 100px 20px;
    background: var(--bg-light);
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.caso-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(46, 69, 165, 0.1);
    transition: all 0.4s ease;
}

.caso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(46, 69, 165, 0.15);
}

.caso-card.featured {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 2px solid rgba(46, 69, 165, 0.2);
}

.caso-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(46, 69, 165, 0.1);
}

.caso-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(46, 69, 165, 0.2);
}

.caso-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.caso-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.caso-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.caso-author {
    margin-bottom: 2rem;
}

.caso-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.caso-author span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.caso-resultados h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.resultado-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
}

.resultado-item {
    text-align: center;
    padding: 1rem;
    background: rgba(46, 69, 165, 0.05);
    border-radius: 12px;
}

.resultado-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.resultado-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.cta-card .caso-content {
    max-width: 350px;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-card .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ==========================================
   FOOTER - MEJORADO
   ========================================== */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-main p {
    max-width: 400px;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   RESPONSIVE UPDATES
   ========================================== */
@media (max-width: 968px) {
    .solutions-grid,
    .casos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main p {
        max-width: 100%;
    }
    
    .proceso-grid {
        grid-template-columns: 1fr;
    }
    
    .caso-header {
        flex-direction: column;
        text-align: center;
    }
    
    .resultado-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .resultado-items {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        min-height: 300px;
    }
}

/* ==========================================
   HERO - ACTUALIZADO CON CTA
   ========================================== */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-text {
    width: 100%;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Hero actualizado */
@media (max-width: 968px) {
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 3rem auto 0;
    }
    
    .hero-cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   SISTEMA GAM - ESTILOS ESPECÍFICOS
   ========================================== */

/* Hero GAM */
.hero-gam {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1e3a 100%);
    position: relative;
    padding: 150px 20px 100px;
    overflow: hidden;
}

.hero-gam::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1555597673-b21d5c935865?w=1600&h=900&fit=crop&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 30, 58, 0.9) 100%);
    z-index: 2;
}

.hero-content-landing {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content-landing h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d9ff;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Problema Section */
.problema-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problema-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.problema-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.problema-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.problema-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Sistema GAM - Fases */
.sistema-gam-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.fases-container {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fase-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(46, 69, 165, 0.1);
    transition: all 0.3s;
}

.fase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 69, 165, 0.3);
    box-shadow: 0 15px 50px rgba(46, 69, 165, 0.15);
}

.fase-destacada {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 2px solid var(--primary-color);
}

.fase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(46, 69, 165, 0.1);
}

.fase-numero {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.fase-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    flex: 1;
}

.fase-tiempo {
    background: rgba(46, 69, 165, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.fase-descripcion {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.fase-lista {
    list-style: none;
    padding: 0;
}

.fase-lista li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.fase-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Caso Drills */
}
/* Fix caso Drills - fondo claro */
.caso-drills-section {
    padding: 100px 20px;
    background: #f8f9fa;
    color: inherit;
}

.caso-drills-header {
    text-align: center;
    margin-bottom: 4rem;
}

.caso-drills-header .section-title {
    color: var(--text-dark);
}

.caso-drills-header .section-subtitle {
    color: var(--text-gray);
}

.drills-timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.drills-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #00d9ff;
}

.timeline-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.drills-metricas {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.drills-metricas h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.metricas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

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

.metrica-valor {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d9ff;
    margin-bottom: 0.5rem;
}

.metrica-desc {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.testimonio-drills {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonio-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.testimonio-drills blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonio-drills cite {
    font-style: normal;
    opacity: 0.9;
}

/* Incluye Section */
.incluye-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.incluye-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.incluye-col {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.incluye-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.incluye-si {
    border-top: 4px solid #10b981;
}

.incluye-no {
    border-top: 4px solid #ef4444;
}

.incluye-necesitas {
    border-top: 4px solid var(--primary-color);
}

.incluye-col ul {
    list-style: none;
    padding: 0;
}

.incluye-col ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.incluye-si ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.incluye-no ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.incluye-necesitas ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Pricing */
.pricing-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1100px;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(46, 69, 165, 0.1);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(46, 69, 165, 0.15);
}

.pricing-destacada {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
}

.pricing-price {
    margin: 2rem 0;
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    display: block;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.pricing-includes ul {
    list-style: none;
    padding: 0;
}

.pricing-includes ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.pricing-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.pricing-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(46, 69, 165, 0.1);
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
}

.pricing-calculo {
    max-width: 800px;
    margin: 4rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.pricing-calculo h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.calculo-grid {
    display: grid;
    gap: 1rem;
}

.calculo-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.calculo-total {
    background: rgba(46, 69, 165, 0.1);
    font-weight: 700;
    border: 2px solid var(--primary-color);
}

.calculo-resultado {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
}

.calculo-roi {
    background: rgba(239, 68, 68, 0.1);
}

.calculo-roi-final {
    background: rgba(16, 185, 129, 0.2);
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid #10b981;
}

.calculo-nota {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

/* FAQ */
.faq-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color);
}

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

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Final GAM */
.cta-final-gam {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1e3a 100%);
    color: white;
}

.cta-content-gam {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-gam h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content-gam > p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.form-gam {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.form-gam input,
.form-gam select,
.form-gam textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

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

.form-gam select {
    color: white;
}

.form-gam option {
    background: var(--bg-dark);
    color: white;
}

.form-nota {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Responsive GAM */
@media (max-width: 968px) {
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .metricas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content-landing h1 {
        font-size: 2.2rem;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 2rem;
    }
}

/* ==========================================
   SISTEMA GAM - LANDING ESPECÍFICA
   ========================================== */
.hero-gam {
    background: linear-gradient(135deg, #1a1e3a 0%, #2e45a5 100%);
    position: relative;
    min-height: 100vh;
    padding: 140px 20px 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555597673-b21d5c935865?w=1920&h=1080&fit=crop&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-content-landing {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.5);
    color: var(--accent-cyan);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-content-landing h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.metric-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Problema Section */
.problema-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problema-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 69, 165, 0.15);
}

.problema-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.problema-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.problema-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Sistema GAM Section */
.sistema-gam-section {
    padding: 100px 20px;
    background: white;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.fases-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fase-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px solid rgba(46, 69, 165, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s;
}

.fase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 69, 165, 0.3);
    box-shadow: 0 15px 40px rgba(46, 69, 165, 0.15);
}

.fase-destacada {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 3px solid var(--primary-color);
}

.fase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(46, 69, 165, 0.1);
}

.fase-numero {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
}

.fase-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    flex: 1;
}

.fase-tiempo {
    font-size: 0.85rem;
    color: var(--text-gray);
    background: rgba(46, 69, 165, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.fase-descripcion {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.fase-lista {
    list-style: none;
    padding: 0;
}

.fase-lista li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.fase-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Caso Drills */
.caso-drills-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.caso-drills-header {
    text-align: center;
    margin-bottom: 4rem;
}

.drills-timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.drills-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.timeline-icon {
    font-size: 1.5rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.timeline-content p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.drills-metricas {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
}

.drills-metricas h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.metricas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.metrica-final {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(46, 69, 165, 0.2);
}

.metrica-valor {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metrica-desc {
    display: block;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonio-drills {
    max-width: 800px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonio-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 4px solid var(--primary-color);
}

.testimonio-drills blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonio-drills cite {
    font-style: normal;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonio-drills cite strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

/* Incluye Section */
.incluye-section {
    padding: 100px 20px;
    background: white;
}

.incluye-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.incluye-col {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
}

.incluye-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.incluye-si {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.incluye-si h3 {
    color: #059669;
}

.incluye-no {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.incluye-no h3 {
    color: #dc2626;
}

.incluye-necesitas {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 2px solid rgba(46, 69, 165, 0.3);
}

.incluye-necesitas h3 {
    color: var(--primary-color);
}

.incluye-col ul {
    list-style: none;
    padding: 0;
}

.incluye-col ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.incluye-si ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 900;
}

.incluye-no ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 900;
}

.incluye-necesitas ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.pricing-card {
    background: white;
    border: 2px solid rgba(46, 69, 165, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 69, 165, 0.15);
    border-color: rgba(46, 69, 165, 0.3);
}

.pricing-destacada {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(46, 69, 165, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    display: block;
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.pricing-includes ul {
    list-style: none;
    padding: 0;
}

.pricing-includes ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.pricing-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

.pricing-calculo {
    max-width: 800px;
    margin: 4rem auto;
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(46, 69, 165, 0.2);
}

.pricing-calculo h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.calculo-grid {
    display: grid;
    gap: 1rem;
}

.calculo-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.calculo-concepto {
    color: var(--text-dark);
    font-weight: 600;
}

.calculo-valor {
    color: var(--primary-color);
    font-weight: 700;
}

.calculo-total {
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
}

.calculo-resultado {
    background: rgba(16, 185, 129, 0.1);
}

.calculo-roi {
    background: rgba(239, 68, 68, 0.1);
}

.calculo-roi-final {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 2px solid #059669;
    font-size: 1.2rem;
}

.calculo-roi-final .calculo-valor {
    color: #059669;
    font-size: 1.5rem;
}

.calculo-nota {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Final GAM */
.cta-final-gam {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #151932 100%);
    color: white;
}

.cta-content-gam {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-gam h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content-gam > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.form-gam {
    background: rgba(20, 25, 50, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(46, 69, 165, 0.3);
    text-align: left;
}

.form-gam input,
.form-gam select,
.form-gam textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(46, 69, 165, 0.4);
    border-radius: 8px;
    background: rgba(10, 14, 39, 0.6);
    color: white;
    font-size: 1rem;
}

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

.form-gam select {
    cursor: pointer;
}

.form-gam .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-gam textarea {
    resize: vertical;
    margin-bottom: 1rem;
}

.form-nota {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Nav active state */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive GAM */
@media (max-width: 968px) {
    .hero-content-landing h1 {
        font-size: 2.5rem;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .fases-container,
    .incluye-grid,
    .pricing-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .metricas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-gam .form-row {
        grid-template-columns: 1fr;
    }
    
    .drills-timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-landing h1 {
        font-size: 2rem;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .metricas-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
}

/* ==========================================
   INDUSTRIAPLAN - ESTILOS ESPECÍFICOS
   ========================================== */

/* Hero Industrial */
.hero-industrial {
    background: linear-gradient(135deg, #1a1e3a 0%, #0a0e27 100%);
    position: relative;
    min-height: 100vh;
    padding: 140px 20px 100px;
}

.hero-overlay-industrial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1920&h=1080&fit=crop&q=80') center/cover;
    opacity: 0.12;
    z-index: 1;
}

.hero-industrial-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem 0;
}

.feature-quick {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.hero-note {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 2rem;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, #ddd 100%);
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0.6;
}

.roadmap-active {
    opacity: 1;
}

.roadmap-marker {
    width: 120px;
    flex-shrink: 0;
    text-align: center;
}

.roadmap-version {
    display: block;
    width: 120px;
    height: 120px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
}

.roadmap-active .roadmap-version {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(46, 69, 165, 0.4);
}

.roadmap-status {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

.roadmap-active .roadmap-status {
    color: var(--primary-color);
    font-weight: 700;
}

.roadmap-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid rgba(46, 69, 165, 0.1);
}

.roadmap-active .roadmap-content {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-color: var(--primary-color);
}

.roadmap-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.roadmap-desc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.roadmap-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.roadmap-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.roadmap-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.roadmap-time {
    padding-top: 1rem;
    border-top: 1px solid rgba(46, 69, 165, 0.1);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.roadmap-final {
    opacity: 0.8;
}

.roadmap-final .roadmap-version {
    border-color: #10b981;
    color: #10b981;
}

.roadmap-final .roadmap-content {
    border-color: rgba(16, 185, 129, 0.3);
}

.roadmap-ventaja {
    max-width: 900px;
    margin: 4rem auto 0;
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.roadmap-ventaja h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.ventaja-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ventaja-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ventaja-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Para quién Section */
.para-quien-section {
    padding: 100px 20px;
    background: white;
}

.para-quien-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.para-quien-card {
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.para-quien-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.para-quien-card ul {
    list-style: none;
    padding: 0;
}

.para-quien-card ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.ideal {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.ideal h3 {
    color: #059669;
}

.ideal ul li {
    color: var(--text-dark);
}

.ideal ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 900;
    font-size: 1.2rem;
}

.no-ideal {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.no-ideal h3 {
    color: #dc2626;
}

.no-ideal ul li {
    color: var(--text-dark);
}

.no-ideal ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Piloto Section */
.piloto-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.piloto-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.piloto-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.piloto-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.piloto-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.piloto-beneficios {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.piloto-beneficios h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.beneficio-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 2px solid rgba(46, 69, 165, 0.1);
    transition: all 0.3s;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(46, 69, 165, 0.15);
}

.beneficio-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.beneficio-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.beneficio-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.piloto-requisitos {
    max-width: 800px;
    margin: 4rem auto;
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(46, 69, 165, 0.2);
}

.piloto-requisitos h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.piloto-requisitos ul {
    list-style: none;
    padding: 0;
}

.piloto-requisitos ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

.piloto-requisitos ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.5rem;
}

.form-piloto {
    max-width: 800px;
    margin: 4rem auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid rgba(46, 69, 165, 0.1);
}

.form-piloto h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-piloto input,
.form-piloto select,
.form-piloto textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(46, 69, 165, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-piloto input:focus,
.form-piloto select:focus,
.form-piloto textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 69, 165, 0.1);
}

.form-piloto .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-piloto textarea {
    resize: vertical;
    margin-bottom: 1rem;
}

/* Responsive Industrial */
@media (max-width: 968px) {
    .hero-industrial-features {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-marker {
        width: 80px;
    }
    
    .roadmap-version {
        width: 80px;
        height: 80px;
        font-size: 1.3rem;
    }
    
    .ventaja-grid,
    .para-quien-grid,
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .form-piloto .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .roadmap-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
}

/* ==========================================
   CASOS DE ÉXITO - PÁGINA EXPANDIDA
   ========================================== */

/* Hero Casos */
.hero-casos {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 150px 20px 100px;
    text-align: center;
    color: white;
}

.hero-casos-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-casos-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Caso Detalle */
.caso-detalle-section {
    padding: 100px 20px;
    background: white;
}

.caso-detalle-section.caso-serenna {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.caso-detalle-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 3px solid rgba(46, 69, 165, 0.2);
}

.caso-detalle-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    flex-shrink: 0;
}

.caso-detalle-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.caso-meta {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.caso-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(46, 69, 165, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.caso-detalle-content {
    max-width: 900px;
    margin: 0 auto;
}

.caso-seccion {
    margin-bottom: 4rem;
}

.caso-seccion h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.caso-seccion p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.problema-lista {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.problema-item-detalle {
    display: flex;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.icon-problema {
    font-size: 2rem;
    flex-shrink: 0;
}

.problema-item-detalle strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.problema-item-detalle p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

/* Solución Timeline */
.solucion-timeline {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.solucion-fase {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 2px solid rgba(46, 69, 165, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.solucion-fase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fase-num {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.solucion-fase h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.solucion-fase ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.solucion-fase ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.solucion-fase ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.fase-resultado {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Resultados Grid Detalle */
.resultados-grid-detalle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.resultado-card-detalle {
    background: white;
    border: 2px solid rgba(46, 69, 165, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.resultado-card-detalle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 69, 165, 0.15);
}

.resultado-card-detalle.destacado {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 3px solid var(--primary-color);
}

.resultado-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.resultado-numero-grande {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.resultado-label {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.resultado-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Impacto Grid */
.impacto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.impacto-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.impacto-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.impacto-item p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

/* Testimonio Completo */
.caso-testimonio-completo {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(46, 69, 165, 0.2);
    margin-top: 4rem;
    text-align: center;
}

.caso-testimonio-completo blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.caso-testimonio-completo cite {
    font-style: normal;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.caso-testimonio-completo cite strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

/* Features SERENNA */
.features-serenna {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-serenna {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.feature-serenna h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-serenna p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.resultados-serenna {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

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

.stat-num {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
}

.serenna-cta {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.link-destacado {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

/* CTA Casos */
.cta-casos {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #151932 100%);
    color: white;
    text-align: center;
}

.cta-casos-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-casos-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-casos-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Responsive Casos */
@media (max-width: 968px) {
    .caso-detalle-header {
        flex-direction: column;
        text-align: center;
    }
    
    .resultados-grid-detalle,
    .impacto-grid,
    .features-serenna {
        grid-template-columns: 1fr;
    }
    
    .resultados-serenna {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-casos-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-casos-content h1 {
        font-size: 2.5rem;
    }
    
    .caso-detalle-info h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   BLOG - ESTILOS
   ========================================== */

/* Hero Blog */
.hero-blog {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.hero-blog h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-blog p {
    font-size: 1.4rem;
    opacity: 0.95;
}

/* Artículos Grid */
.articulos-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.articulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.articulo-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.articulo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(46, 69, 165, 0.15);
}

.articulo-categoria {
    display: inline-block;
    background: rgba(46, 69, 165, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.articulo-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.articulo-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.articulo-card h2 a:hover {
    color: var(--primary-color);
}

.articulo-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.articulo-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* CTA Blog */
.cta-blog {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #151932 100%);
    color: white;
    text-align: center;
}

.cta-blog h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-blog p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

/* Artículo Individual */
.articulo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
}

.articulo-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 3px solid rgba(46, 69, 165, 0.2);
}

.articulo-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.articulo-header .articulo-meta {
    font-size: 1.1rem;
}

.articulo-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.articulo-body h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.articulo-body h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.articulo-body p {
    margin-bottom: 1.5rem;
}

.articulo-body ul,
.articulo-body ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.articulo-body ul li,
.articulo-body ol li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.articulo-body strong {
    color: var(--text-dark);
    font-weight: 700;
}

.articulo-callout {
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.articulo-callout p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Responsive Blog */
@media (max-width: 968px) {
    .articulos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-blog h1 {
        font-size: 3rem;
    }
    
    .articulo-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-blog h1 {
        font-size: 2.5rem;
    }
    
    .articulo-header h1 {
        font-size: 1.8rem;
    }
}

/* ==========================================
   HERO GAM V2 - AGRESIVO CON NÚMEROS FLOTANTES
   ========================================== */
.hero-gam-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a0e27;
    overflow: hidden;
    padding: 140px 20px 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555597673-b21d5c935865?w=1920&h=1080&fit=crop&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-main-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Badge con glow */
.hero-badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.pulse-ring {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00d9ff;
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #00d9ff;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.badge-text {
    color: #00d9ff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Título masivo */
.hero-title-massive {
    margin-bottom: 2rem;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out forwards;
    opacity: 0;
}

.title-line-1 {
    animation-delay: 0.2s;
}

.title-line-2 {
    animation-delay: 0.4s;
    font-size: 3.5rem;
}

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

.hero-subtitle-v2 {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    animation: subtitleReveal 1s ease-out 0.6s forwards;
    opacity: 0;
}

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

/* Números flotantes animados */
.floating-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
}

.float-metric {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    opacity: 0;
    animation: metricFloat 1s ease-out forwards;
    transition: all 0.4s ease;
}

.float-metric:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.2),
        0 0 40px rgba(0, 217, 255, 0.1);
}

.float-1 { animation-delay: 0.8s; }
.float-2 { animation-delay: 1s; }
.float-3 { animation-delay: 1.2s; }
.float-4 { animation-delay: 1.4s; }

@keyframes metricFloat {
    from {
        opacity: 0;
        transform: translateY(50px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.float-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2e45a5 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.float-currency {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00d9ff;
    margin-left: 0.2rem;
}

.float-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CTA con efecto neón */
.hero-cta-neon {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0 2rem;
    animation: ctaReveal 1s ease-out 1.6s forwards;
    opacity: 0;
}

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

.btn-neon {
    position: relative;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary-neon {
    background: linear-gradient(135deg, #2e45a5 0%, #00d9ff 100%);
    color: white;
    box-shadow: 
        0 10px 40px rgba(0, 217, 255, 0.3),
        0 0 20px rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-primary-neon:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.5),
        0 0 40px rgba(0, 217, 255, 0.4);
}

.btn-neon-text {
    position: relative;
    z-index: 2;
}

.btn-neon-glow {
    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-primary-neon:hover .btn-neon-glow {
    width: 300px;
    height: 300px;
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, transparent 0%, #00d9ff 100%);
    border-radius: 2px;
}

/* ==========================================
   CALCULADORA DE ÉXITO
   ========================================== */
.calculadora-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.calculadora-header {
    text-align: center;
    margin-bottom: 4rem;
}

.calculadora-container {
    max-width: 900px;
    margin: 0 auto;
}

.calculadora-main {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 2px solid rgba(46, 69, 165, 0.1);
}

.presupuesto-control {
    margin-bottom: 3rem;
}

.presupuesto-control label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.slider-wrapper {
    position: relative;
    margin: 2rem 0;
}

.budget-slider {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(46, 69, 165, 0.2) 0%, rgba(0, 217, 255, 0.4) 100%);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2e45a5 0%, #00d9ff 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
}

.budget-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2e45a5 0%, #00d9ff 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.presupuesto-valor {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-top: 1rem;
}

.resultado-probabilidad {
    text-align: center;
    margin: 3rem 0;
}

.probabilidad-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    stroke: #e5e7eb;
}

.progress-ring-fill {
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
    transition: stroke-dashoffset 1s ease;
    stroke-linecap: round;
}

.probabilidad-numero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2e45a5 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.probabilidad-texto {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.probabilidad-texto strong {
    color: var(--primary-color);
    font-weight: 800;
}

.metricas-estimadas {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-radius: 20px;
}

.metricas-estimadas h4 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.metricas-grid-calc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.metrica-calc-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.metrica-calc-valor {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metrica-calc-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

.calc-recomendacion {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-left: 4px solid #ff9800;
    border-radius: 12px;
    margin-top: 2rem;
}

.recom-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.recom-texto {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
}

.calc-nota {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.calc-nota p {
    margin-bottom: 1rem;
}

.calc-nota strong {
    color: var(--text-dark);
}

.calc-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================
   INVERSIÓN SECTION (sin pricing)
   ========================================== */
.inversion-section {
    padding: 100px 20px;
    background: white;
}

.inversion-box {
    max-width: 1000px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid rgba(46, 69, 165, 0.1);
}

.inversion-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.inversion-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.inversion-incluye {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.inversion-incluye li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.inversion-nota {
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    margin-top: 2rem;
}

.inversion-cta-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.precio-desde {
    margin-bottom: 1.5rem;
}

.precio-label {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.precio-consultar {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2e45a5 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inversion-cta-box p {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.inversion-garantia {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-left: 4px solid #10b981;
    border-radius: 12px;
}

.garantia-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.garantia-texto {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Responsive Hero V2 */
@media (max-width: 968px) {
    .title-line-1 {
        font-size: 3rem;
    }
    
    .title-line-2 {
        font-size: 2.2rem;
    }
    
    .floating-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .float-number {
        font-size: 3rem;
    }
    
    .hero-cta-neon {
        flex-direction: column;
        align-items: stretch;
    }
    
    .metricas-grid-calc {
        grid-template-columns: 1fr;
    }
    
    .inversion-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-line-1 {
        font-size: 2.2rem;
    }
    
    .title-line-2 {
        font-size: 1.6rem;
    }
    
    .floating-metrics {
        grid-template-columns: 1fr;
    }
    
    .float-number {
        font-size: 2.5rem;
    }
}

/* FIX: Títulos oscuros para fondos claros */
.section-title-dark {
    color: var(--text-dark) !important;
}

.section-subtitle-dark {
    color: var(--text-gray) !important;
}

/* Hero: Badge caso real */
.hero-caso-proof {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Float suffix para números como 10-15 */
.float-suffix {
    font-size: 2rem;
    font-weight: 900;
    color: #00d9ff;
    margin-left: 0.2rem;
}

/* Calculadora simplificada - Círculo más grande */
.probabilidad-circle {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
}

.prob-percent {
    font-size: 2.5rem;
    margin-left: 0.3rem;
}

.probabilidad-texto-grande {
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.probabilidad-texto-grande strong {
    color: var(--primary-color);
    font-weight: 800;
}

/* Fix calculadora header */
.calculadora-header {
    text-align: center;
    margin-bottom: 4rem;
}

.calculadora-header .section-title-dark {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.calculadora-header .section-subtitle-dark {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.testimonio-drills {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 3rem auto 0 !important;
    padding: 2.5rem !important;
    background: rgba(46, 69, 165, 0.03) !important;
    border-radius: 20px !important;
}

.testimonio-drills blockquote {
    margin: 1.5rem 0 !important;
}

.testimonio-drills cite {
    margin-top: 1rem !important;
}

/* ==========================================

/* ==========================================
   TIMELINE MÉTODO - SISTEMA GAM
   ========================================== */
.metodo-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding-left: 80px;
}

/* Línea vertical */
.metodo-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
}

.metodo-timeline .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.metodo-timeline .timeline-item:last-child {
    margin-bottom: 0;
}

.metodo-timeline .timeline-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(46, 69, 165, 0.3);
    border: 4px solid white;
    z-index: 2;
}

.timeline-numero {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.metodo-timeline .timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.metodo-timeline .timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-periodo {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.metodo-timeline .timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .metodo-timeline {
        padding-left: 60px;
    }
    
    .metodo-timeline::before {
        left: 20px;
    }
    
    .metodo-timeline .timeline-marker {
        left: -40px;
        width: 50px;
        height: 50px;
    }
    
    .timeline-numero {
        font-size: 1.2rem;
    }
    
    .metodo-timeline .timeline-content {
        padding: 1.5rem;
    }
    
    .metodo-timeline .timeline-content h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================
   DRILLS MÉTRICAS - AJUSTES
   ========================================== */
.drills-metricas h3 {
    display: none; /* Ya no hace falta el título "Métricas finales" */
}

.drills-metricas {
    margin-bottom: 3rem;
}

.metricas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .metricas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .metricas-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   DRILLS HERO CARD
   ========================================== */
.drills-hero-card {
    max-width: 1000px;
    margin: 3rem auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 3rem;
    border: 1px solid rgba(46, 69, 165, 0.1);
}

/* Top: Avatar + Testimonio */
.hero-card-top {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-card-avatar {
    text-align: center;
}

.hero-card-avatar img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 6px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(46, 69, 165, 0.3);
}

.hero-card-testimonio blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 1.5rem 0;
    position: relative;
}

.hero-card-testimonio blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    left: -30px;
    top: -20px;
    font-family: Georgia, serif;
}

.hero-card-testimonio cite {
    display: block;
    font-style: normal;
}

.hero-card-testimonio cite strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-card-testimonio cite span {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Separador */
.hero-card-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    margin: 2.5rem 0;
}

/* Métricas en grid */
.hero-card-metricas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.metrica-hero {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(46, 69, 165, 0.1);
    transition: all 0.3s ease;
}

.metrica-hero:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(46, 69, 165, 0.15);
}

.metrica-valor-hero {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metrica-label-hero {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .drills-hero-card {
        padding: 2rem;
    }
    
    .hero-card-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-card-avatar img {
        width: 140px;
        height: 140px;
    }
    
    .hero-card-testimonio blockquote::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-card-metricas {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .metrica-valor-hero {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .drills-hero-card {
        padding: 1.5rem;
    }
    
    .hero-card-avatar img {
        width: 120px;
        height: 120px;
    }
    
    .hero-card-testimonio blockquote {
        font-size: 1rem;
    }
    
    .hero-card-metricas {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metrica-hero {
        padding: 1rem;
    }
    
    .metrica-valor-hero {
        font-size: 1.8rem;
    }
}

/* ==========================================
   INVERSIÓN - MEJORADA
   ========================================== */
.inversion-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.inversion-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.inversion-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.inversion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.inversion-servicio {
    border-color: rgba(46, 69, 165, 0.2);
}

.inversion-servicio:hover {
    border-color: var(--primary-color);
}

.inversion-ads {
    border-color: rgba(0, 217, 255, 0.2);
}

.inversion-ads:hover {
    border-color: var(--accent-cyan);
}

.inversion-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.inversion-icon {
    font-size: 2.5rem;
}

.inversion-card-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

.precio-display {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 69, 165, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-radius: 12px;
}

.precio-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.precio-valor {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.precio-plataformas {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.inversion-incluye-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inversion-incluye-list li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inversion-incluye-list li:last-child {
    border-bottom: none;
}

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

.presupuesto-desde {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.presupuesto-nota {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.inversion-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.inversion-cta-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.inversion-garantia {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(46, 69, 165, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.garantia-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.garantia-texto {
    color: var(--text-gray);
    line-height: 1.7;
}

.garantia-texto strong {
    color: var(--text-dark);
}

/* ==========================================
   FAQ ACCORDION - INTERACTIVO
   ========================================== */
.faq-section {
    padding: 100px 20px;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(46, 69, 165, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(46, 69, 165, 0.1);
}

.faq-accordion-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-accordion-question:hover {
    background: rgba(46, 69, 165, 0.02);
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
}

.faq-accordion-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(45deg);
}

.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-answer {
    max-height: 500px;
}

.faq-accordion-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .inversion-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-accordion-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-accordion-answer p {
        padding: 0 1.5rem 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .inversion-card {
        padding: 1.5rem;
    }
    
    .precio-valor {
        font-size: 2rem;
    }
    
    .presupuesto-desde {
        font-size: 1.5rem;
    }
    
    .inversion-cta {
        padding: 1.5rem;
    }
}

/* ==========================================
   EQUIPO/VALORES COMPACTO
   ========================================== */
.equipo-valores {
    padding: 80px 20px;
    background: white;
}

.equipo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.equipo-stats-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-gray);
}

.stat-inline {
    font-weight: 600;
    color: var(--primary-color);
}

.stat-separator {
    color: rgba(0, 0, 0, 0.2);
}

.valores-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.valor-card-compact {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.valor-card-compact:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(46, 69, 165, 0.1);
}

.valor-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.valor-card-compact:hover .valor-icon {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.valor-card-compact h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.valor-card-compact p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .valores-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .equipo-stats-inline {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .equipo-valores {
        padding: 60px 20px;
    }
    
    .valores-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .valor-card-compact {
        padding: 1.5rem 1.2rem;
    }
    
    .valor-icon {
        width: 40px;
        height: 40px;
    }
    
    .equipo-stats-inline {
        font-size: 0.9rem;
    }
}

/* ==========================================
   ICONOS SVG INDUSTRIAPLAN
   ========================================== */
.feature-icon-svg {
    width: 32px;
    height: 32px;
    color: var(--accent-cyan);
    stroke-width: 2;
    flex-shrink: 0;
}

.problema-icon-svg {
    width: 48px;
    height: 48px;
    color: #e74c3c;
    margin: 0 auto 1.5rem;
    stroke-width: 2;
}

/* Responsive iconos */
@media (max-width: 480px) {
    .feature-icon-svg {
        width: 28px;
        height: 28px;
    }
    
    .problema-icon-svg {
        width: 40px;
        height: 40px;
    }
}
