/* ==========================================================
   SECTIONS2.CSS — Secciones específicas de Eventos + Biblioteca de Secciones
   ==========================================================

   ÍNDICE:
   1.  Variables & Reset
   2.  Utilidades comunes (contenedor, clases de fondo, headers, botones)
   3.  Secciones de Eventos (evt-*)
       S1.  Hero Overlay
       S2.  Split Section
       S3.  Features Grid
       S4.  Extra Stats
       S5.  Sector Cards
       S6.  Steps Process
       S7.  Testimonials
       S8.  CTA Boxed
   4.  Biblioteca de secciones genéricas
       S1.  Hero Center
       S2.  Hero Side Image
       S3.  Hero Slider
       S4.  Benefits
       S5.  Tech Specs
       S6.  Sectors Grid
       S7.  About
       S8.  Services (4 cols)
       S9.  Steps
       S10. Stats
       S11. Features Icons
       S12. Card Modern
       S13. Comparison Table
       S14. Testimonials
       S15. Client Logos
       S16-17. CTA
       S18. Parallax
       S19. Zigzag
       S21. FAQ
       S22. Contact
   5.  Utilidades de catálogo (demo-only)
   6.  Media Queries
   ========================================================== */


/* ----------------------------------------------------------
   1. VARIABLES & RESET
   ---------------------------------------------------------- */

:root {
    /* Colores de eventos (evt-*) */
    --evt-primary: #0e315b;
    --evt-primary-dark: #092342;
    --evt-accent: #3aa6d0;
    --evt-text: #333333;
    --evt-text-light: #666666;
    --evt-bg-light: #f8f9fa;
    --evt-white: #ffffff;
    --evt-border: #e1e4e8;
    --evt-transition: all 0.3s ease;

    /* Colores globales (biblioteca de secciones) */
    --primary: #0e315b;
    --primary-dark: #071d3a;
    --primary-light: #1c4b82;
    --accent: #38b6ff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --container: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}


/* ----------------------------------------------------------
   2. UTILIDADES COMUNES
   ---------------------------------------------------------- */

/* Contenedor principal */
.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Padding de sección */
.section-padding {
    padding: 5rem 0;
}

/* Contenedor de eventos */
.evt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Fondos de utilidad */
.evt-bg-light {
    background-color: var(--evt-bg-light);
}

.evt-bg-dark {
    background-color: var(--evt-primary);
    color: white;
}

/* Header de sección (eventos) */
.evt-section-header {
    margin-bottom: 50px;
}

.evt-section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.evt-section-header.left {
    text-align: left;
}

.evt-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--evt-primary);
    margin-bottom: 15px;
}

.evt-section-header p {
    font-size: 1.1rem;
    color: var(--evt-text-light);
    line-height: 1.6;
}

.evt-header-line {
    width: 60px;
    height: 4px;
    background: var(--evt-accent);
    margin-top: 20px;
}

/* Mini header */
.evt-mini-header {
    color: var(--evt-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Separador de catálogo (demo) */
.catalog-header {
    background: #f0f0f0;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.catalog-label {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 60px;
}

.demo-separator {
    background: #eee;
    color: #888;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    margin: 0;
}


/* ----------------------------------------------------------
   BOTONES — Eventos (evt-btn-*)
   ---------------------------------------------------------- */

.evt-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--evt-transition);
    cursor: pointer;
}

.evt-btn-primary {
    background: var(--evt-accent);
    color: white;
    border: 2px solid var(--evt-accent);
}

.evt-btn-primary:hover {
    background: var(--evt-primary);
    border-color: var(--evt-primary);
}

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

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

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

.evt-btn-white:hover {
    background: transparent;
    color: white;
}

.evt-btn-glass {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.evt-btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
}

.evt-btn-group {
    display: flex;
    gap: 15px;
}

/* Link con flecha */
.evt-link-arrow {
    color: var(--evt-primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid rgba(14, 49, 91, 0.1);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.evt-link-arrow:hover {
    border-bottom-color: var(--evt-primary);
    gap: 12px;
}

.evt-link-simple {
    color: var(--evt-accent);
    font-weight: 600;
    text-decoration: underline;
    margin-top: 20px;
    display: inline-block;
}

/* Badge */
.evt-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-block;
}


/* ----------------------------------------------------------
   BOTONES — Genéricos (btn-*)
   ---------------------------------------------------------- */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

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

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

.btn-accent:hover {
    background-color: #299bdc;
    border-color: #299bdc;
}


/* ----------------------------------------------------------
   3-S1. EVT HERO OVERLAY
   ---------------------------------------------------------- */

.evt-hero-overlay {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.evt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.evt-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evt-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14, 49, 91, 0.95) 0%, rgba(14, 49, 91, 0.6) 100%);
}

.evt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
}

.evt-hero-content h2 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.evt-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.6;
}

.entry-content {
    background: #f8fafc !important;
}

section.accessories-section
 {
    background: white !important;
}
/* ----------------------------------------------------------
   3-S2. EVT SPLIT SECTION
   ---------------------------------------------------------- */

.evt-split-section {
    background: #f8fafc;
}

.evt-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.evt-split-grid.reverse {
    direction: rtl;
}

.evt-split-grid.reverse>* {
    direction: ltr;
}

.evt-split-text h3 {
    font-size: 32px;
    color: var(--evt-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.evt-lead {
    font-size: 1.15rem;
    color: var(--evt-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.evt-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.evt-check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
}

.evt-check-list li i {
    color: var(--evt-accent);
    margin-right: 12px;
    font-size: 1.1rem;
}

.evt-media-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

.evt-media-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.evt-media-frame.video-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.evt-media-frame.video-style:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--evt-primary);
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


/* ----------------------------------------------------------
   3-S3. EVT FEATURES GRID
   ---------------------------------------------------------- */

.evt-features-grid-section {
    padding: 100px 0;
    background: var(--evt-bg-light);
}

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

.evt-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.evt-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.evt-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(58, 166, 208, 0.1);
    color: var(--evt-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

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

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


/* ----------------------------------------------------------
   3-S4. EVT EXTRA STATS
   ---------------------------------------------------------- */

.evt-stat-row {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.evt-stat-item {
    display: flex;
    flex-direction: column;
}

.evt-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--evt-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.evt-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}


/* ----------------------------------------------------------
   3-S5. EVT SECTOR CARDS (Masonry/Grid imagen)
   ---------------------------------------------------------- */

.evt-sector-cards {
    padding: 100px 0;
}

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

.evt-img-card {
    position: relative;
    display: block;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

.evt-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.evt-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(9, 35, 66, 0.95), transparent);
    padding: 30px 20px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.evt-card-content {
    transform: translateY(20px);
    transition: 0.3s;
}

.evt-img-card:hover .evt-card-content {
    transform: translateY(0);
}

.evt-card-content i {
    font-size: 1.5rem;
    color: var(--evt-accent);
    margin-bottom: 10px;
    display: block;
}

.evt-card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.evt-card-content span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    opacity: 0;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.evt-img-card:hover .evt-card-content span {
    opacity: 1;
}


/* ----------------------------------------------------------
   3-S6. EVT STEPS PROCESS
   ---------------------------------------------------------- */

.evt-process-section {
    padding: 100px 0;
    background: white;
}

.evt-process-section .evt-container {
    display: flex;
    gap: 80px;
}

.evt-process-intro {
    flex: 0 0 400px;
}

.evt-process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.evt-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.evt-step-marker {
    width: 50px;
    height: 50px;
    background: var(--evt-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(14, 49, 91, 0.2);
}

.evt-step-body h5 {
    font-size: 1.2rem;
    color: var(--evt-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.evt-step-body p {
    margin: 0;
    font-size: 1rem;
    color: var(--evt-text-light);
}


/* ----------------------------------------------------------
   3-S7. EVT TESTIMONIALS
   ---------------------------------------------------------- */

.evt-testimonials-section {
    padding: 100px 0;
}

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

.evt-testim-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.evt-stars {
    color: #fece3e;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.evt-testim-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    font-style: italic;
}

.evt-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.evt-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.evt-author div {
    display: flex;
    flex-direction: column;
}

.evt-author strong {
    font-weight: 600;
    color: white;
}

.evt-author span {
    font-size: 0.9rem;
    opacity: 0.7;
}


/* ----------------------------------------------------------
   3-S8. EVT CTA BOXED
   ---------------------------------------------------------- */

.evt-cta-boxed {
    padding: 80px 0;
    background: #fff;
}

.evt-cta-box {
    background: var(--evt-accent);
    color: white;
    border-radius: 20px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(58, 166, 208, 0.3);
}

.evt-cta-text h2 {
    color: white;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.evt-cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}


/* ----------------------------------------------------------
   4-S1. HERO CENTER
   ---------------------------------------------------------- */

.hero-center {
    background: linear-gradient(rgba(14, 49, 91, 0.9), rgba(14, 49, 91, 0.8)), url('https://placehold.co/1920x1080/0e315b/white?text=Event+Background');
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-center .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-center h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-center p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}


/* ----------------------------------------------------------
   4-S2. HERO SIDE IMAGE
   ---------------------------------------------------------- */

.hero-side {
    background-color: var(--bg-light);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-side-text h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-side-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-side-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


/* ----------------------------------------------------------
   4-S3. HERO SLIDER (Simulado)
   ---------------------------------------------------------- */

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
    background: #000;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .slide-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: var(--radius);
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-slider .slide-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


/* ----------------------------------------------------------
   4-S4. BENEFITS
   ---------------------------------------------------------- */

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

.benefit-card {
    padding: 2rem;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
}


/* ----------------------------------------------------------
   4-S5. TECH SPECS
   ---------------------------------------------------------- */

.tech-specs {
    background-color: var(--primary);
    color: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.specs-list i {
    color: var(--accent);
}

.specs-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}


/* ----------------------------------------------------------
   4-S6. SECTORS GRID
   ---------------------------------------------------------- */

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

.sector-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.sector-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sector-item:hover img {
    transform: scale(1.05);
}

.sector-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(14, 49, 91, 0.9), transparent);
    padding: 2rem;
    color: white;
}


/* ----------------------------------------------------------
   4-S7. ABOUT
   ---------------------------------------------------------- */

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


/* ----------------------------------------------------------
   4-S8. SERVICES (4 columnas)
   ---------------------------------------------------------- */

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

.service-box {
    background: white;
    padding: 2rem 1.5rem;
    border: 1px solid #eee;
    border-radius: var(--radius);
    text-align: center;
    transition: 0.3s;
}

.service-box:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.service-box:hover i {
    color: white;
}

.service-box:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.service-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}


/* ----------------------------------------------------------
   4-S9. STEPS
   ---------------------------------------------------------- */

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

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: var(--shadow);
}

.steps-line {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}


/* ----------------------------------------------------------
   4-S10. STATS
   ---------------------------------------------------------- */

.stats {
    background: var(--primary);
    color: white;
    text-align: center;
}

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

.stat-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}


/* ----------------------------------------------------------
   4-S11. FEATURES (Iconos + Texto)
   ---------------------------------------------------------- */

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

.feature-unit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-unit i {
    color: var(--primary);
    font-size: 1.5rem;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius);
}


/* ----------------------------------------------------------
   4-S12. CARD MODERN (Event Types)
   ---------------------------------------------------------- */

.event-cards {
    background-color: var(--bg-light);
}

.card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.card-modern:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    background-color: #ddd;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 1.5rem;
}

.card-tags span {
    background: #eef2ff;
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}


/* ----------------------------------------------------------
   4-S13. COMPARISON TABLE
   ---------------------------------------------------------- */

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.compare-table th,
.compare-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.compare-table th {
    background: var(--bg-light);
    color: var(--primary);
}

.compare-table td:first-child,
.compare-table th:first-child {
    text-align: left;
    font-weight: 600;
}

.highlight-col {
    background: #f0f9ff;
    border: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
}


/* ----------------------------------------------------------
   4-S14. TESTIMONIALS
   ---------------------------------------------------------- */

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

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #eee;
    font-family: serif;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ccc;
    object-fit: cover;
}


/* ----------------------------------------------------------
   4-S15. CLIENT LOGOS
   ---------------------------------------------------------- */

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    opacity: 0.6;
}

.logo-grid img {
    height: 40px;
    filter: grayscale(100%);
    transition: 0.3s;
}

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


/* ----------------------------------------------------------
   4-S16 & S17. CTA
   ---------------------------------------------------------- */

.cta-strong {
    background: var(--primary);
    text-align: center;
    color: white;
}

.cta-soft {
    background: #e0f2fe;
    text-align: center;
}


/* ----------------------------------------------------------
   4-S18. IMAGE OVERLAY PARALLAX
   ---------------------------------------------------------- */

.parallax-section {
    background: url('https://placehold.co/1920x800/071d3a/white?text=Backstage') no-repeat fixed center;
    background-size: cover;
    padding: 6rem 0;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 49, 91, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: right;
}

.parallax-content h2 {
    color: #ffffff;
}


/* ----------------------------------------------------------
   4-S19. ZIGZAG LAYOUT
   ---------------------------------------------------------- */

.zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.zigzag-row {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-row img {
    border-radius: var(--radius);
}


/* ----------------------------------------------------------
   4-S21. FAQ
   ---------------------------------------------------------- */

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

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    display: none;
}

.faq-item:hover .faq-answer {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ----------------------------------------------------------
   4-S22. CONTACT
   ---------------------------------------------------------- */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
}

.contact-info-box {
    background: var(--primary);
    color: white;
    padding: 3rem;
    border-radius: var(--radius);
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}


/* ==========================================================
   6. MEDIA QUERIES — de mayor a menor breakpoint
   ========================================================== */

/* Tablets grandes (hasta 992px) */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (hasta 960px) */
@media (max-width: 960px) {
    .hero-side-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

/* Tablets / Móviles grandes (hasta 900px) */
@media (max-width: 900px) {
    .cta-v1-section {
        margin-bottom: 0px !important;
    }
    .evt-split-text {
        order: 1;
    }
    
    .evt-split-media {
        order: 2;
    }

    .btn-solid, .btn-outline-white {
        font-size: 15px !important;
    }
    .hero-slide h1 {
        font-size: 40px;
    }
    .evt-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .evt-split-grid.reverse {
        direction: ltr;
    }

    .evt-hero-content h2 {
        font-size: 2.5rem;
    }

    .evt-grid-3,
    .evt-grid-4,
    .evt-testim-grid {
        grid-template-columns: 1fr;
    }

    .evt-process-section .evt-container {
        flex-direction: column;
        gap: 40px;
    }

    .evt-process-intro {
        flex: auto;
    }

    .evt-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }
}

/* Móviles (hasta 768px) */
@media (max-width: 768px) {
    .hero-center h1 {
        font-size: 2.5rem;
    }

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

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

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .steps-line {
        display: none;
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .zigzag-row,
    .zigzag-row.reverse {
        flex-direction: column;
    }
}

/* Móviles pequeños (hasta 600px) */
@media (max-width: 600px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Móviles muy pequeños (hasta 576px) */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}