/* =========================================================
   ESTILOS PRINCIPALES - CREWAI STYLE
   ========================================================= */

/* 🎨 Import Tipografía */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===================================
   VARIABLES CSS - CREWAI IDENTITY
   =================================== */
:root {
    /* 🎯 Colores principales */
    --primary-color: #FF5E3A;           /* Coral/Naranja - COLOR PRINCIPAL */
    --secondary-color: #FF734F;         /* Coral claro - Énfasis */
    --accent-color: #A2FF86;            /* Verde Signal - Éxito */
    
    /* Colores de fondo */
    --bg-dark: #0B0B0B;                 /* Negro carbón - FONDO PRINCIPAL */
    --bg-darker: #050505;               /* Negro más oscuro */
    --bg-light: #1E1E1E;                /* Gris oscuro para secciones alternas */
    --bg-card: #161616;                 /* Fondo para cards */
    
    /* Colores de texto */
    --text-dark: #FFFFFF;               /* Blanco - texto principal en fondo oscuro */
    --text-light: #9CA3AF;              /* Gris medio - secundario */
    --text-white: #FFFFFF;              /* Blanco puro */
    --text-muted: #6B7280;              /* Texto menos importante */
    
    /* 🌈 Colores de interacción (UI States) */
    --hover-primary: #FF734F;           /* Coral claro */
    --hover-secondary: #FF8C6B;         /* Coral más claro */
    --focus-color: #FF5E3A;             /* Coral foco */
    --disabled-color: #3D3D3D;          /* Gris oscuro */
    --error-color: #FF4D4D;             /* Rojo Alert */
    --success-color: #A2FF86;           /* Verde Signal */
    
    /* Colores de borde */
    --border-color: #2D2D2D;
    --border-light: #3D3D3D;
    --border-primary: #FF5E3A;
    
    /* 🌈 Gradientes */
    --gradient-orange: linear-gradient(90deg, #FF5E3A 0%, #FF734F 100%);
    --gradient-violet-neural: linear-gradient(90deg, #6B5BFF 0%, #9C7AFF 100%);
    --gradient-hero: linear-gradient(135deg, #0B0B0B 0%, #1E1E1E 100%);
    
    /* 🔤 Tipografía - Tamaños (escala CrewAI) */
    --font-h1: 3.5rem;          /* 56px - Hero principal */
    --font-h2: 2.5rem;          /* 40px - Secciones principales */
    --font-h3: 1.75rem;         /* 28px - Subtítulos */
    --font-h4: 1.375rem;        /* 22px - Titulares secundarios */
    --font-body-l: 1.125rem;    /* 18px - Texto largo */
    --font-body-m: 1rem;        /* 16px - Texto base */
    --font-caption: 0.875rem;   /* 14px - Notas pequeñas */
    --font-label: 0.875rem;     /* 14px - Labels / Buttons */
    
    /* Tipografía - Pesos */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    
    /* Line heights (interlineado) */
    --lh-tight: 1.1;
    --lh-snug: 1.2;
    --lh-normal: 1.3;
    --lh-relaxed: 1.4;
    --lh-loose: 1.6;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow-primary: 0 0 20px rgba(0, 82, 255, 0.3);
    --shadow-glow-secondary: 0 0 20px rgba(255, 94, 58, 0.3);
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ===================================
   RESET Y BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: var(--lh-loose);
    color: var(--text-white);
    background-color: var(--bg-dark);
    font-size: var(--font-body-m);
    font-weight: var(--weight-regular);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   TIPOGRAFÍA - CREWAI STYLE
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-bold);
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--font-h1);          /* 56px */
    font-weight: var(--weight-extrabold);
    line-height: var(--lh-tight);      /* 1.1 */
}

h2 {
    font-size: var(--font-h2);          /* 40px */
    font-weight: var(--weight-bold);
    line-height: var(--lh-snug);       /* 1.2 */
}

h3 {
    font-size: var(--font-h3);          /* 28px */
    font-weight: var(--weight-semibold);
    line-height: var(--lh-normal);     /* 1.3 */
}

h4 {
    font-size: var(--font-h4);          /* 22px */
    font-weight: var(--weight-semibold);
    line-height: var(--lh-relaxed);    /* 1.4 */
}

h5 {
    font-size: var(--font-body-l);      /* 18px */
    font-weight: var(--weight-semibold);
}

h6 {
    font-size: var(--font-body-m);      /* 16px */
    font-weight: var(--weight-semibold);
}

p {
    margin-bottom: 1rem;
    line-height: var(--lh-loose);       /* 1.6 */
    font-size: var(--font-body-m);
    color: var(--text-light);
}

p strong {
    color: var(--text-white);
}

.text-large {
    font-size: var(--font-body-l);      /* 18px Body L */
    line-height: var(--lh-loose);
}

.caption, small {
    font-size: var(--font-caption);     /* 14px */
    font-weight: var(--weight-medium);
    line-height: 1.5;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: var(--weight-medium);
}

a:hover {
    color: var(--hover-primary);
}

a:focus {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}

/* ===================================
   HEADER Y NAVEGACIÓN
   =================================== */
.header {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: var(--weight-extrabold);
    color: var(--primary-color);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    color: var(--text-white);
    font-weight: var(--weight-medium);
    font-size: var(--font-caption);
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

.nav-menu a:focus {
    outline: none;
}

.menu-toggle {
    display: none;
}

/* ===================================
   TRUSTED BY CAROUSEL
   =================================== */
.trusted-by-section {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(11, 11, 11, 0.3) 20%,
        rgba(11, 11, 11, 0.7) 40%,
        var(--bg-dark) 60%,
        var(--bg-dark) 100%
    );
    padding: 6rem 0 2rem 0;
    margin-top: -150px;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.trusted-by-text {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.trusted-by-text p {
    color: var(--text-light);
    font-size: var(--font-body-m);
    font-weight: var(--weight-medium);
}

.trusted-logos-carousel {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.trusted-logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll-brands 30s linear infinite;
    width: max-content;
}

.trusted-logos-track:hover {
    animation-play-state: paused;
}

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

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 60px;
    flex-shrink: 0;
}

.trusted-logo img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.trusted-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* ===================================
   HERO SECTION - CREWAI STYLE CON VIDEO
   =================================== */
.hero {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}

/* Overlay sobre el video para mejorar legibilidad */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 11, 0.85) 0%,
        rgba(11, 11, 11, 0.7) 30%,
        rgba(11, 11, 11, 0.75) 70%,
        rgba(255, 94, 58, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: var(--font-h1);
    font-weight: var(--weight-extrabold);
    line-height: var(--lh-tight);
    letter-spacing: -0.03em;
}

.hero p {
    font-size: var(--font-body-l);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--text-white);
    line-height: var(--lh-loose);
    font-weight: var(--weight-regular);
}

.hero .btn {
    margin: 0 0.5rem;
}

/* ===================================
   BOTONES - CREWAI STYLE
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: var(--weight-semibold);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: var(--font-label);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    line-height: var(--lh-relaxed);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(255, 94, 58, 0.4);
}

.btn-primary:hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 58, 0.6);
    color: var(--text-white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 58, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Variante para fondo blanco */
.cta .btn-outline {
    color: #1E1E1E;
    border-color: #D1D5DB;
    background: #FFFFFF;
}

.cta .btn-outline:hover {
    background: #F3F4F6;
    color: #1E1E1E;
    border-color: #9CA3AF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary {
    box-shadow: 0 4px 16px rgba(255, 94, 58, 0.3);
}

.cta .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(255, 94, 58, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn:disabled {
    background: var(--disabled-color);
    color: var(--text-light);
    cursor: not-allowed;
    box-shadow: none;
}

.btn:disabled:hover {
    transform: none;
}

/* ===================================
   SECCIONES
   =================================== */
section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-light {
    background: var(--bg-light);
}

.section-card {
    background: var(--bg-card);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    font-size: var(--font-body-l);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   GRIDS Y LAYOUTS
   =================================== */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.benefits-grid,
.services-grid,
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-md);
}

/* ===================================
   STATS SECTION - CREWAI INSPIRED
   =================================== */
.stats-section {
    background: var(--bg-dark);
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 94, 58, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(162, 255, 134, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: left;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    background: rgba(30, 30, 30, 0.8);
}

.stat-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.stat-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(
        to right,
        var(--primary-color) 0%,
        transparent 100%
    );
}

.stat-number {
    font-size: 5rem;
    font-weight: var(--weight-extrabold);
    line-height: 1;
    color: var(--text-white);
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--text-white) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.stat-description {
    font-size: var(--font-body-s);
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   SERVICES SECTION - ELEGANT DESIGN
   =================================== */
.services-section {
    background: var(--bg-dark);
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.section-title-elegant {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 94, 58, 0.1);
    border: 1px solid rgba(255, 94, 58, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: var(--font-caption);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-title-elegant h2 {
    margin-bottom: 1rem;
}

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

.service-elegant-card {
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.8) 0%,
        rgba(30, 30, 30, 0.4) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.service-elegant-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.95) 0%,
        rgba(30, 30, 30, 0.6) 100%
    );
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(255, 94, 58, 0.2);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: var(--weight-extrabold);
    color: rgba(255, 94, 58, 0.1);
    line-height: 1;
    transition: all var(--transition-base);
}

.service-elegant-card:hover .service-number {
    color: rgba(255, 94, 58, 0.2);
    transform: scale(1.1);
}

.service-icon-elegant {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.service-elegant-card:hover .service-icon-elegant {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.service-elegant-card h3 {
    font-size: var(--font-h4);
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-elegant-card p {
    color: var(--text-light);
    font-size: var(--font-body-m);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: var(--weight-semibold);
    font-size: var(--font-body-m);
    text-decoration: none;
    transition: all var(--transition-base);
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

.service-link svg {
    transition: transform var(--transition-base);
}

.service-link:hover svg {
    transform: translateX(4px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ===================================
   CARDS - CREWAI STYLE
   =================================== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(255, 94, 58, 0.3);
    border-color: var(--primary-color);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: var(--font-h4);
    color: var(--text-white);
}

.card p {
    color: var(--text-light);
    font-size: var(--font-body-m);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-size: 1.5rem;
}

.benefit-card,
.service-card,
.sector-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    text-align: center;
}

.benefit-card:hover,
.service-card:hover,
.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(255, 94, 58, 0.3);
    border-color: var(--primary-color);
}

.benefit-card h3,
.service-card h3,
.sector-card h3 {
    font-size: var(--font-h4);
    margin-bottom: 1rem;
    color: var(--text-white);
}

/* ===================================
   PÁGINA SECTORES
   =================================== */

/* Hero Sectores */
.sectores-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 8rem 0 6rem;
    text-align: center;
}

.sectores-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.sectores-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff8866);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sectores-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.sectores-hero .hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.sectores-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Por Qué Sectores */
.why-sectors {
    background: var(--bg-dark);
}

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

.reason-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 94, 58, 0.15);
}

.reason-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.1), rgba(255, 136, 102, 0.1));
    border-radius: 50%;
}

.reason-icon svg {
    color: var(--primary-color);
}

.reason-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.reason-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Grid de Sectores */
.sectores-especializados {
    background: var(--bg-dark-lighter);
}

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

.sectores-grid .sector-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sectores-grid .sector-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(255, 94, 58, 0.2);
}

.sectores-grid .sector-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.1), rgba(255, 136, 102, 0.1));
    border-radius: var(--radius-md);
}

.sectores-grid .sector-icon svg {
    color: var(--primary-color);
}

.sectores-grid .sector-card h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.sectores-grid .sector-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    flex-grow: 1;
}

.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sector-link:hover {
    gap: 0.75rem;
    color: #ff8866;
}

.sector-link svg {
    transition: transform 0.3s ease;
}

.sector-link:hover svg {
    transform: translateX(4px);
}

/* Servicios Comunes */
.common-services {
    background: var(--bg-dark-lighter);
}

.services-list {
    max-width: 800px;
    margin: 4rem auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(255, 94, 58, 0.1);
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 60px;
    opacity: 0.5;
}

.service-content h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.section-footer {
    margin-top: 3rem;
}

.highlight-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 94, 58, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
}

/* Sector No Listado */
.sector-not-listed {
    background: var(--bg-dark);
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.content-box h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.content-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.content-box p:last-of-type {
    margin-bottom: 2.5rem;
}

/* Siguiente Paso */
.next-step {
    background: var(--bg-dark-lighter);
}

.next-step-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.step-description {
    text-align: center;
    margin-bottom: 3rem;
}

.step-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.step-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Sectores */
@media (max-width: 768px) {
    .sectores-hero {
        padding: 5rem 0 3rem;
    }

    .sectores-hero h1 {
        font-size: 2rem;
    }

    .sectores-hero .hero-subtitle {
        font-size: 1.25rem;
    }

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

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

    .service-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-number {
        min-width: auto;
    }

    .content-box {
        padding: 2rem;
    }

    .step-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .step-actions a {
        text-align: center;
    }
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: var(--font-h4);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-dark);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-caption);
}

/* ===================================
   CTA MINIMAL - ELEGANT WHITE DESIGN
   =================================== */
.cta-minimal {
    background: #FFFFFF;
    padding: 6rem var(--spacing-md);
    position: relative;
    border-top: 1px solid #E5E7EB;
}

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

.cta-minimal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 94, 58, 0.05);
    border: 1px solid rgba(255, 94, 58, 0.15);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    margin-bottom: 2rem;
}

.cta-minimal-badge svg {
    width: 16px;
    height: 16px;
}

.cta-minimal h2 {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-minimal-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-minimal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(255, 94, 58, 0.25);
}

.btn-cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 58, 0.35);
}

.btn-cta-primary svg {
    transition: transform var(--transition-base);
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: #374151;
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    border: 1px solid #D1D5DB;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-cta-secondary:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    color: #111827;
}

.cta-minimal-footer {
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.cta-minimal-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.cta-minimal-trust svg {
    width: 14px;
    height: 14px;
    color: #FCD34D;
    flex-shrink: 0;
}

/* Responsive CTA Minimal */
@media (max-width: 768px) {
    .cta-minimal {
        padding: 4rem var(--spacing-md);
    }

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

    .cta-minimal-description {
        font-size: 1rem;
    }

    .cta-minimal-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-minimal-trust {
        font-size: 0.75rem;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===================================
   UTILITIES
   =================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-white {
    color: var(--text-white);
}

.bg-gradient-orange {
    background: var(--gradient-orange);
}

.bg-gradient-violet {
    background: var(--gradient-violet-neural);
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-caption);
    font-weight: var(--weight-semibold);
    background: var(--accent-color);
    color: var(--bg-dark);
}

.badge-primary {
    background: var(--primary-color);
    color: var(--text-white);
}

.badge-secondary {
    background: var(--secondary-color);
    color: var(--text-white);
}

/* ===================================
   CASE HIGHLIGHT (Caso Destacado)
   =================================== */
.case-highlight {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(255, 94, 58, 0.15);
}

.case-highlight-content h3 {
    font-size: var(--font-h2);
    margin: 1rem 0 1.5rem;
    color: var(--text-white);
}

.case-highlight-content p {
    font-size: var(--font-body-l);
    line-height: var(--lh-loose);
    margin-bottom: 1.5rem;
}

.case-highlight-content em {
    display: block;
    margin: 2rem 0 1rem;
    font-style: italic;
    color: var(--text-light);
    font-size: var(--font-body-l);
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.case-highlight-content strong {
    color: var(--primary-color);
}

/* ===================================
   TECH LOGOS
   =================================== */
.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-md);
    align-items: center;
    justify-items: center;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    width: 100%;
    text-align: center;
}

.tech-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(255, 94, 58, 0.2);
}

.tech-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) invert(1) brightness(0.9);
    opacity: 0.7;
    transition: filter var(--transition-base), opacity var(--transition-base);
}

.tech-logo:hover img {
    filter: grayscale(0%) invert(0) brightness(1);
    opacity: 1;
}

.tech-logo span {
    font-size: var(--font-caption);
    font-weight: var(--weight-semibold);
    color: var(--text-light);
}

/* ===================================
   HERO BUTTONS
   =================================== */
.hero-buttons,
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn,
.cta-buttons .btn {
    min-width: 200px;
}

/* ===================================
   TESTIMONIALS CAROUSEL - FULL WIDTH
   =================================== */
.testimonials-section {
    padding: var(--spacing-xl) 0;
}

.testimonials-section .container {
    padding-bottom: var(--spacing-md);
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: var(--spacing-md) 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-testimonials 40s linear infinite;
    width: max-content;
    padding: 0 2rem;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

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

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    min-width: 450px;
    max-width: 450px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(255, 94, 58, 0.2);
    border-color: var(--primary-color);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: var(--font-body-l);
    color: var(--text-light);
    line-height: var(--lh-loose);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: var(--text-white);
    font-size: var(--font-body-m);
    font-weight: var(--weight-semibold);
}

.author-info span {
    color: var(--text-light);
    font-size: var(--font-caption);
}

/* ===================================
   SERVICES PAGE - ELEGANT DESIGN
   =================================== */
.services-hero {
    padding: 6rem var(--spacing-md) 4rem;
    background: linear-gradient(
        135deg,
        var(--bg-dark) 0%,
        rgba(30, 30, 30, 1) 50%,
        rgba(255, 94, 58, 0.05) 100%
    );
    text-align: center;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-hero h1 {
    margin-bottom: 1.5rem;
}

.services-detailed {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-dark);
}

.service-detailed-card {
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.8) 0%,
        rgba(30, 30, 30, 0.4) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-detailed-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 94, 58, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.service-detailed-card:hover {
    box-shadow: 0 12px 32px rgba(255, 94, 58, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.95) 0%,
        rgba(30, 30, 30, 0.6) 100%
    );
}

.service-detailed-header {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detailed-number {
    font-size: 4rem;
    font-weight: var(--weight-extrabold);
    color: rgba(255, 94, 58, 0.15);
    line-height: 1;
    transition: all var(--transition-base);
}

.service-detailed-card:hover .service-detailed-number {
    color: rgba(255, 94, 58, 0.25);
    transform: scale(1.05);
}

.service-detailed-icon {
    font-size: 4rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-base);
}

.service-detailed-card:hover .service-detailed-icon {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.service-detailed-title h2 {
    font-size: var(--font-h3);
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-tagline {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: var(--weight-medium);
    margin: 0;
}

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

.service-detailed-description p {
    color: var(--text-light);
    font-size: var(--font-body-m);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detailed-description strong {
    color: var(--text-white);
    font-weight: var(--weight-semibold);
}

.service-expert-note {
    background: rgba(255, 94, 58, 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-size: var(--font-body-s);
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.service-benefits h4 {
    font-size: 1.125rem;
    font-weight: var(--weight-semibold);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.benefits-list li {
    color: var(--text-light);
    font-size: var(--font-body-m);
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-left: 0.5rem;
}

.service-highlight {
    background: linear-gradient(
        135deg,
        rgba(255, 94, 58, 0.1) 0%,
        rgba(162, 255, 134, 0.1) 100%
    );
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-weight: var(--weight-semibold);
    font-size: var(--font-body-m);
    border-left: 4px solid var(--primary-color);
}

.service-detailed-footer {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.service-detailed-footer .btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-light);
}

.service-detailed-footer .btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Trust Section */
.trust-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

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

.trust-card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: var(--primary-color);
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.trust-card:hover .trust-icon {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.trust-card h3 {
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.trust-card p {
    color: var(--text-light);
    font-size: var(--font-body-m);
    line-height: 1.6;
}

/* =========================================================
   SERVICE DETAIL PAGE STYLES (CONSULTORIA ESTRATEGICA)
   ========================================================= */

/* Service Hero Section */
.services-hero {
    padding: 8rem 0 6rem;
    text-align: center;
}

.services-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.services-hero h1 {
    font-size: var(--font-h1);
    font-weight: var(--weight-black);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: var(--weight-semibold);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features span::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: var(--weight-bold);
}

/* Service Section */
.service-section {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-number {
    font-size: 4rem;
    font-weight: var(--weight-black);
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.section-header h2 {
    font-size: var(--font-h2);
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin: 0;
}

.section-content {
    max-width: 800px;
}

.section-content .lead {
    font-size: 1.25rem;
    font-weight: var(--weight-medium);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.section-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section-content .highlight {
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    color: var(--primary-color);
    margin-top: 2rem;
}

.section-content .content-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.section-content .content-list li {
    font-size: 1.125rem;
    color: var(--text-light);
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.6;
}

.section-content .content-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: var(--weight-bold);
    font-size: 1.25rem;
}

/* Automation Examples List */
.automation-examples {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.automation-examples li {
    font-size: 1.125rem;
    color: var(--text-light);
    padding: 1.5rem;
    padding-left: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.3) 0%, rgba(22, 22, 22, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.automation-examples li:hover {
    border-left-width: 5px;
    transform: translateX(4px);
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.05) 0%, rgba(22, 22, 22, 0.7) 100%);
}

.automation-examples li::before {
    content: '✓';
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    color: var(--accent-color);
    font-weight: var(--weight-bold);
    font-size: 1.25rem;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.4) 0%, rgba(22, 22, 22, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.problem-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.4) 0%, rgba(22, 22, 22, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.05) 0%, rgba(22, 22, 22, 0.8) 100%);
    transform: translateY(-4px);
}

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

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Methodology Steps */
.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.3) 0%, rgba(22, 22, 22, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.method-step:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
}

.method-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    font-size: 1.75rem;
    font-weight: var(--weight-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.method-content h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.method-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.included-item:hover {
    border-color: var(--accent-color);
    background: rgba(30, 30, 30, 0.5);
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.included-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Cases List */
.cases-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.4) 0%, rgba(22, 22, 22, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.case-item:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
}

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

.case-item p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Before & After */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.before-column,
.after-column {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.4) 0%, rgba(22, 22, 22, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.before-column {
    border-left: 4px solid var(--error-color);
}

.after-column {
    border-left: 4px solid var(--accent-color);
}

.before-column h3,
.after-column h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.before-column ul,
.after-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.before-column li,
.after-column li {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 0;
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    display: inline-block;
    background: rgba(255, 94, 58, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: var(--weight-medium);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all var(--transition-base);
}

.tech-tag:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.4) 0%, rgba(22, 22, 22, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Implementation Cases (Specific for Implementacion page) */
.implementation-cases {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.implementation-case {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.4) 0%, rgba(22, 22, 22, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.implementation-case:hover {
    border-left-width: 6px;
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.05) 0%, rgba(22, 22, 22, 0.8) 100%);
}

.implementation-case h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.implementation-case p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Botones dentro de benefit-card */
.benefit-card .btn {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 280px;
}

.benefit-card .btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

/* Service CTA Final */
.service-cta-final {
    padding: 6rem 0;
    text-align: center;
}

.service-cta-final .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-final h2 {
    font-size: var(--font-h2);
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.service-cta-final p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-cta-final .cta-buttons {
    margin-top: 2.5rem;
}

/* ===================================
   SECTORES PAGE - CENTERED SECTIONS
   =================================== */

/* Section Header Centered */
.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-number-centered {
    font-size: 3rem;
    font-weight: var(--weight-black);
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.section-header-centered h2 {
    font-size: var(--font-h2);
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Services Feature Grid */
.services-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-box {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.5) 0%, rgba(22, 22, 22, 0.7) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.08) 0%, rgba(22, 22, 22, 0.9) 100%);
    box-shadow: 0 12px 32px rgba(255, 94, 58, 0.15);
}

.feature-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    font-weight: var(--weight-black);
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.3);
}

.feature-box:hover .feature-icon {
    filter: grayscale(0);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.feature-box h3 {
    font-size: 1.375rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-box p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Section Footer Centered */
.section-footer-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-centered {
    font-size: 1.25rem;
    font-weight: var(--weight-medium);
    color: var(--text-white);
    line-height: 1.7;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.08) 0%, rgba(255, 94, 58, 0.03) 100%);
    border: 1px solid rgba(255, 94, 58, 0.3);
    border-radius: var(--radius-lg);
    position: relative;
    margin: 0;
}

.highlight-centered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

/* Centered Content Box */
.centered-content-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lead-centered {
    font-size: 1.25rem;
    font-weight: var(--weight-medium);
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.description-centered {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons-centered {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive para secciones centradas */
@media (max-width: 768px) {
    .section-number-centered {
        font-size: 2rem;
    }

    .services-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-box {
        padding: 2rem 1.5rem;
    }

    .highlight-centered {
        padding: 2rem 1.5rem;
        font-size: 1.125rem;
    }

    .lead-centered {
        font-size: 1.125rem;
    }

    .description-centered {
        font-size: 1rem;
    }
}

/* =========================================================
   PÁGINAS DE SECTORES - DISEÑO DIFERENCIADO
   ========================================================= */

/* Container más ancho para sectores */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Sector Principal */
.sector-hero-main {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.sector-hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 94, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sector-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sector-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.sector-hero-main h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--weight-black);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sector-hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sector-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

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

.stat-text {
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    color: var(--text-light);
}

.sector-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Secciones de contenido */
.sector-content-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.sector-content-section.section-alt {
    background: var(--bg-light);
}

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

.section-intro-centered h2 {
    font-size: var(--font-h2);
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: var(--weight-medium);
}

/* Cards Grid para Retos */
.sector-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sector-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sector-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 94, 58, 0.2);
}

.card-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.sector-card h3 {
    font-size: 1.375rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.sector-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Lista de Soluciones Numeradas */
.sector-solutions-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.solution-row:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(255, 94, 58, 0.15);
}

.solution-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    font-size: 1.75rem;
    font-weight: var(--weight-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.solution-content h3 {
    font-size: 1.375rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.solution-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.section-note {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 94, 58, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
}

.section-note p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
}

/* Feature Grid para Casos de Uso */
.sector-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 94, 58, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.feature-box > p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    font-size: 1rem;
    color: var(--text-muted);
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: var(--weight-bold);
}

/* Beneficios Showcase */
.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.benefit-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), #8FE870);
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: var(--weight-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-item p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.benefit-item strong {
    color: var(--text-white);
    font-weight: var(--weight-semibold);
}

/* Comparación Antes/Después */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.before-col {
    border-left: 4px solid var(--error-color);
}

.after-col {
    border-left: 4px solid var(--accent-color);
}

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

.comparison-icon {
    font-size: 2.5rem;
}

.comparison-header h3 {
    font-size: 1.75rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin: 0;
}

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

.comparison-list li {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.before-col .comparison-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: var(--weight-bold);
    font-size: 1.25rem;
}

.after-col .comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: var(--weight-bold);
    font-size: 1.25rem;
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: var(--weight-bold);
}

/* Stack de Tecnologías */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: var(--weight-medium);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Timeline de Proceso */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    font-size: 1.75rem;
    font-weight: var(--weight-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 94, 58, 0.3);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* CTA Final de Sector */
.sector-cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--bg-dark) 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.sector-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 94, 58, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-final-content h2 {
    font-size: var(--font-h2);
    font-weight: var(--weight-bold);
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.cta-final-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

/* Responsive para Sectores */
@media (max-width: 1024px) {
    .container-wide {
        padding: 0 var(--spacing-md);
    }

    .sector-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .sector-feature-grid {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .sector-hero-main {
        padding: 5rem 0 3rem;
    }

    .sector-hero-main h1 {
        font-size: 2rem;
    }

    .sector-hero-lead {
        font-size: 1.125rem;
    }

    .sector-hero-stats {
        gap: 2rem;
    }

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

    .sector-content-section {
        padding: 4rem 0;
    }

    .sector-cards-grid {
        grid-template-columns: 1fr;
    }

    .solution-row {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .cta-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Mobile adjustments for trusted-by section */
    .trusted-by-section {
        padding: 2rem 0 1rem 0;
        margin-top: -10px;
    }

    /* Adjust hero video for mobile */
    .hero-video-background iframe {
        min-height: 100%;
        height: 100%;
    }
}
