/* ==========================================================
   MAIN.CSS — Estilos globales de RADIOHIRE
   ==========================================================

   ÍNDICE:
   1.  Variables CSS
   2.  Reset & Base
   3.  Layout (.container)
   4.  Header & Navegación
   5.  Botones
   6.  Hero Carousel (Home)
   7.  Benefits
   8.  Section Split
   9.  Event Types
   10. Testimonials
   11. CTA Section
   12. About Minimal / Pillars
   13. Social (Redes)
   14. Legal
   15. Página de Eventos (ev-*)
   16. TLK Wave / Feature Split
   17. TLK V2 Page
   18. TLK Product Page
   19. Comparison Table (Product)
   20. Slider de Logos
   21. Media Queries
   ========================================================== */


/* ----------------------------------------------------------
   1. VARIABLES CSS
   ---------------------------------------------------------- */

:root {
  /* Marca */
  --primary-color: #0e315b;
  --primary-dark: #07203e;
  --accent-color: #3aa6d0;
  --brand-cyan: #3aa6d0;
  --evt-accent: #3aa6d0;

  /* Textos */
  --text-color: #333333;
  --tlk-text-muted: #555555;

  /* Fondos */
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --color-bg-light: #f5f7fa;

  /* Bordes */
  --border-color: #e2e8f0;

  /* Producto (prd-*) */
  --prd-primary: #0e315b;
  --prd-accent: #3aa6d0;
  --prd-white: #ffffff;
  --prd-light: #f5f7fa;
  --prd-text: #333333;
  --prd-border: #e2e8f0;

  /* Efectos */
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-tech-content h1 {
  color: white;
}

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

ul {
  list-style: none;
}

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

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

/* ----------------------------------------------------------
   4. HEADER & NAVEGACIÓN
   ---------------------------------------------------------- */
.header {
  background-color: var(--white);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--primary-color);
}

.nav-links a:hover {
  color: var(--accent-color);
}


/* ----------------------------------------------------------
   5. BOTONES
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

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

.btn-secondary {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

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

.ast-single-post .entry-content a {
  text-decoration: none !important;
}

.btn-solid,
.btn-outline-white {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 9px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  margin: 0 !important;
}

/* Hover de .btn-solid (separado de .btn-outline-white) */
.btn-solid:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

/* ----------------------------------------------------------
   6. HERO CAROUSEL
   ---------------------------------------------------------- */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 49, 91, 0.6);
  /* Blue overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding-left: 20px;
  /* Aligned left as requested */
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.3s;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.5s;
}

.hero-buttons {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.7s;
}

.carousel-slide.active .hero-content h1,
.carousel-slide.active .hero-content p,
.carousel-slide.active .hero-buttons {
  transform: translateY(0);
  opacity: 1;
}

.carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--white);
  transform: scale(1.2);
}

/* ----------------------------------------------------------
   7. BENEFITS
   ---------------------------------------------------------- */
.benefits {
  padding: 80px 0;
  background-color: var(--white);
}

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

.benefit-item {
  text-align: center;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 10px;
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* ----------------------------------------------------------
   8. SECTION SPLIT (Producto / Software)
   ---------------------------------------------------------- */
.section-split {
  padding: 100px 0;
  display: flex;
  align-items: center;
  gap: 60px;
}

.section-split.alt {
  flex-direction: row-reverse;
  background-color: var(--light-bg);
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------------------------
   9. EVENT TYPES
   ---------------------------------------------------------- */
.event-types {
  padding: 100px 0;
  background-color: var(--white);
  text-align: center;
}

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

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.event-card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  /* 'group: card' no es CSS válido — eliminado */
}

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

.ast-builder-menu-1 .menu-item:hover {
  color: #1258ac !important;
}

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

.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(14, 49, 91, 0.9), transparent);
  color: var(--white);
  text-align: left;
}

.event-overlay h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.5rem;
}

/* ----------------------------------------------------------
   10. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-bg);
  text-align: center;
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* ----------------------------------------------------------
   11. CTA SECTION
   ---------------------------------------------------------- */
.cta-section {
  padding: 100px 0;
  background: var(--primary-color);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 30px;
}

div#ast-scroll-top {
  display: none !important;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-split {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .section-split.alt {
    flex-direction: column;
  }

  .logo {
    font-size: 20px;
  }

  .nav-links {
    display: none;
    /* Mobile menu implementation would go here */
  }
}

/* ----------------------------------------------------------
   12. ABOUT MINIMAL / PILLARS
   ---------------------------------------------------------- */

.section-about-minimal {
  background-color: #f8f9fa;
  padding: 100px 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #333333;
  overflow: hidden;
}

.minimal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* Columna Narrativa (Izquierda) */
.col-narrative {
  flex: 1;
}

.label-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0e315b;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.minimal-heading {
  font-size: 3rem;
  line-height: 1.1;
  color: #0e315b;
  font-weight: 800;
  margin-bottom: 40px;
}

section.contenedor {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
}

.narrative-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 30px;
}

.narrative-highlight {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 30px 0;
  margin-top: 40px;
}

.narrative-highlight h4 {
  color: #0e315b;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.narrative-highlight p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Columna de Pillars (Derecha) - Diseño de Lista Vertical */
.col-pillars {
  flex: 0.9;
  background: #ffffff;
  padding: 50px;
  border-radius: 4px;
  /* Bordes más rectos para look técnico */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Decoration Line */
.col-pillars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #0e315b;
}

.pillars-title {
  font-size: 1.5rem;
  color: #0e315b;
  margin-bottom: 40px;
  font-weight: 700;
}

.pillar-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

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

.pillar-icon-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #f0f7ff;
  color: #0e315b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  /* Slightly rounded */
  font-size: 1.5rem;
}

.pillar-content h5 {
  font-size: 1.2rem;
  color: #0e315b;
  margin-bottom: 8px;
  font-weight: 700;
}

.pillar-content p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Badge TLK flotante (simulado) */
.tlk-badge {
  display: inline-block;
  background-color: #0e315b;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 960px) {
  .minimal-container {
    flex-direction: column;
  }

  .minimal-heading {
    font-size: 2.5rem;
  }

  .col-pillars {
    width: 100%;
    padding: 30px;
    margin-top: 40px;
  }
}

/* ----------------------------------------------------------
   13. SOCIAL (Redes Sociales)
   ---------------------------------------------------------- */

/* From Uiverse.io by faxriddin20 */
.card {
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
}

/* instagram*/
.containerOne:hover {
  background-color: #0e315b;
  transition-duration: 0.3s;
}

/* twitter*/
.containerTwo:hover {
  background-color: #0e315b;
  transition-duration: 0.3s;
}

/* linkdin*/
.containerThree:hover {
  background-color: #0e315b;
  transition-duration: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.legal-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0e315b 0%, #051830 100%);
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ----------------------------------------------------------
   14. LEGAL
   ---------------------------------------------------------- */

.legal-container h1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  background: linear-gradient(to right, #ffffff, #a0c4e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.legal-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #d6e2f0;
}

.legal-container strong {
  color: #ffffff;
}

.legal-container a {
  color: #3aa6d0;
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
   15. PÁGINA DE EVENTOS (ev-*)
   ---------------------------------------------------------- */

.page-events-container {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

.page-events-container * {
  box-sizing: border-box;
}

/* Utilidad de Imagen: Cubrir contenedor */
.ev-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Hero Section --- */
.ev-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  background-color: #0e315b;
  /* Fallback */
}

/* Imagen de fondo del Hero */
.ev-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  /* Placeholder pattern/color si no hay foto */
  background-image: url('https://placehold.co/1920x600/07203e/FFF?text=Hero+Eventos');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.ev-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(14, 49, 91, 0.8), rgba(5, 24, 48, 0.9));
  z-index: 2;
}

.ev-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.ev-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ev-hero p {
  font-size: 1.5rem;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Sections Common --- */
.ev-section {
  padding: 100px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.ev-title {
  font-size: 2.5rem;
  color: #0e315b;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.ev-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background-color: #3aa6d0;
}

/* --- Outdoor Section (Imagen Grande derecha) --- */
.ev-outdoor {
  background-color: #ffffff;
}

.ev-split {
  display: flex;
  align-items: center;
  /* Centrado vertical */
  gap: 60px;
}

.ev-text-col {
  flex: 1;
}

.ev-img-col {
  flex: 1;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.ev-highlight-box {
  background-color: #f5f9fc;
  border-left: 5px solid #3aa6d0;
  padding: 30px;
  margin-top: 30px;
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  color: #0e315b;
}

/* --- Festivals Section (Galería Grid) --- */
.ev-festivals {
  background-color: #0e315b;
  color: #ffffff;
}

.ev-festivals .ev-title {
  color: #ffffff;
}

.ev-festivals p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.ev-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px 250px;
  gap: 20px;
  margin-top: 40px;
}

/* Diseño asimétrico de galería */
.ev-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* El primer item ocupa 2 columnas */
.ev-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.ev-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-weight: 600;
}

/* --- Hotels Section (Cards con Imagen) --- */
.ev-hotels {
  background-color: #f8f9fa;
}

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

.ev-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.ev-card:hover {
  transform: translateY(-8px);
}

.ev-card-img-header {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.ev-card-body {
  padding: 30px;
  flex: 1;
}

.ev-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0e315b;
  font-weight: 700;
}

.ev-card ul {
  padding-left: 20px;
  margin-top: 15px;
  color: #555;
}

/* --- Stadiums Section (Hero interno) --- */
.ev-stadiums {
  padding-bottom: 0;
  background: #fff;
}

/* Layout tipo banner ancho */
.ev-stadium-hero {
  margin-top: 40px;
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ev-stadium-content-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 500px;
  /* Caja flotante sobre la imagen */
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  z-index: 5;
}

.ev-list-check {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.ev-list-check li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #0e315b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ev-list-check li i {
  color: #3aa6d0;
}

/* --- VIP Section (Split Inverso) --- */
.ev-vip {
  background-color: #111;
  color: white;
  padding: 0;
}

.ev-vip-layout {
  display: flex;
  flex-wrap: wrap;
}

.ev-vip-img {
  flex: 1;
  min-width: 400px;
  min-height: 600px;
  position: relative;
}

.ev-vip-text {
  flex: 1;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ev-vip-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.ev-vip-text p {
  font-size: 1.1rem;
  color: #a0a0a0;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ev-split {
    flex-direction: column;
  }

  .ev-img-col {
    width: 100%;
    height: 350px;
  }

  .ev-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ev-gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
  }

  .ev-stadium-content-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: -50px;
    /* Overlap effect mobile */
    border-radius: 0;
  }

  .ev-stadium-hero {
    height: auto;
    border-radius: 0;
    margin: 0 -30px;
  }

  .ev-stadium-image-wrapper {
    height: 300px;
  }

  .ev-vip-img {
    min-height: 300px;
    width: 100%;
    flex: 100%;
  }
}


/* ----------------------------------------------------------
   16. TLK WAVE SECTION
   Versión oscura (.tlk-wave--dark) para páginas producto TLK.
   Versión clara (.tlk-wave) para páginas generales — ver bloque 18.
   ---------------------------------------------------------- */

/* Variante oscura (página de producto TLK) */
.tlk-wave--dark {
  background: linear-gradient(180deg, #0b0d11 0%, #11141c 100%);
  text-align: center;
}

.tlk-wave--dark .tlk-wave-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  text-align: left;
}

.tlk-wave--dark .tlk-wave-item {
  border-left: 2px solid var(--primary-color);
  padding-left: 20px;
}

.tlk-wave--dark .tlk-wave-item h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 5px;
}

.tlk-wave--dark .tlk-wave-item p {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
}

/* --- SPLIT SECTION BASE --- */

.feature-split {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.feature-split--reverse {
  flex-direction: row-reverse;
}

.feature-split__media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.feature-split__content {
  flex: 1;
}

.feature-split__content--dark {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
}

.feature-split__title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-split__title span {
  color: var(--accent);
}

.feature-split__text {
  margin-bottom: 30px;
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.feature-specs li {
  margin-bottom: 10px;
  color: #ddd;
  font-size: 1rem;
}


/* --- WAVE SECTION --- */

.wave-section {
  padding: 80px 0;
}

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

.wave-split {
  display: flex;
  align-items: center;
  gap: 40px;
}

.wave-split__content {
  flex: 1;
}

.wave-split__media img {
  width: 100%;
  border-radius: 12px;
}

.wave-tag {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wave-title {
  font-size: 2.2rem;
  margin: 10px 0 20px;
  color: var(--primary);
}

.wave-text {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

.wave-item h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.wave-item p {
  color: #ccc;
  font-size: 0.95rem;
}


/* --- RESPONSIVE --- */

@media (max-width: 900px) {

  .feature-split,
  .wave-split {
    flex-direction: column;
  }

  .feature-split--reverse {
    flex-direction: column;
  }
}



/* ----------------------------------------------------------
   17. TLK V2 PAGE
   ---------------------------------------------------------- */

/* TLK V2 PAGE WRAPPER */
.tlk-v2-page {
  background-color: var(--light-bg);
  color: var(--text-color);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

.tlk-v2-page * {
  box-sizing: border-box;
}

/* Variables internas adaptadas a tu paleta */
.tlk-v2-page {
  --accent-cyan: var(--accent-color);
  --accent-blue: var(--primary-color);
  --bg-dark: var(--primary-dark);
  --bg-card: #e2e6f2;
  --text-main: var(--text-color);
  --text-white: var(--white);
}

/* --- MARQUEE STRIP --- */
.v2-strip {
  background: var(--accent-color);
  color: var(--white);
  padding: 15px 0;
  overflow: hidden;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
  white-space: nowrap;
}

/* --- BENTO GRID FEATURES --- */
.v2-features {
  padding: 120px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.v2-section-title {
  font-size: 3rem;
  margin-bottom: 60px;
  border-left: 5px solid var(--accent-color);
  padding-left: 20px;
  color: var(--primary-dark);
}

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

.bento-item {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

/* Large items span 2 cols */
.bento-large-h {
  grid-column: span 2;
}

.bento-large-v {
  grid-row: span 2;
}

.bento-bg-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.04);
  transition: color 0.3s;
}

.bento-item:hover .bento-bg-icon {
  color: rgba(14, 49, 91, 0.2);
}

.bento-content h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.bento-content p {
  color: var(--text-main);
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

/* --- BIG IMAGE SPLITS --- */
.v2-split-section {
  display: flex;
  min-height: 600px;
}

.v2-split-media {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.v2-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.5s;
}

.v2-split-section:hover .v2-split-media img {
  filter: grayscale(0%) contrast(1.05);
}

.v2-split-text {
  flex: 1;
  background: var(--white);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2-split-text h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.v2-split-text h2 span {
  color: var(--accent-color);
}

.v2-spec-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.v2-spec-list li {
  border-top: 2px solid var(--evt-accent);
  padding-top: 15px;
  color: var(--text-main);
}

.v2-spec-list li strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

/* --- WAVE PTX DARK UI --- */
.v2-ptx {
  background: var(--primary-dark);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.v2-ptx h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.ptx-interface-mock {
  max-width: 900px;
  height: 500px;
  margin: 60px auto 0;
  background: #0e2038;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 60px rgba(7, 32, 62, 0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-large-h {
    grid-column: span 1;
  }

  .bento-large-v {
    grid-column: span 1;
  }

  .v2-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .v2-split-section {
    flex-direction: column;
  }

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

  .v2-spec-list {
    grid-template-columns: 1fr;
  }

  .v2-split-text {
    padding: 40px;
  }

  .v2-hero {
    padding: 80px 20px;
  }
}

/* ----------------------------------------------------------
   18. TLK PRODUCT PAGE
   ---------------------------------------------------------- */

.tlk-product-page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  --tlk-primary: var(--primary-color);
  --tlk-accent: var(--primary-dark);
  --tlk-dark: var(--primary-dark);
  --tlk-card: var(--white);
  --tlk-text-muted: #555555;
  --tlk-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.tlk-product-page * {
  box-sizing: border-box;
}

.tlk-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.tlk-section {
  padding: 64px 0;
}

/* TYPOGRAPHY */
.tlk-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.tlk-subtitle {
  font-size: 1.25rem;
  color: var(--tlk-text-muted);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 40px;
}

.tlk-highlight {
  color: var(--evt-accent);
}

/* BUTTONS */
.tlk-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.tlk-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 20px rgba(7, 32, 62, 0.3);
  transform: translateY(-2px);
}

.tlk-btn-outline {
  background: transparent;
  border: 1px solid rgba(14, 49, 91, 0.4);
  color: var(--primary-dark);
}

.tlk-btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

/* HERO SECTION */
.tlk-hero {
  position: relative;
  padding: 180px 0 120px;
  background: radial-gradient(circle at 50% 30%, #e3e8f2 0%, #f5f7fa 70%);
  text-align: center;
  overflow: hidden;
}

.tlk-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(7, 32, 62, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 32, 62, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  z-index: 0;
}

.tlk-hero-content {
  position: relative;
  z-index: 2;
}

.tlk-hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tlk-hero-badge {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tlk-hero-img {
  margin: 60px auto 0;
  position: relative;
  max-width: 600px;
}

.tlk-hero-img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25));
  animation: floatImg 6s ease-in-out infinite;
}

/* OVERVIEW SECTION */
.tlk-overview {
  background: #e9edf6;
  text-align: center;
}

/* FEATURES GRID */
.tlk-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.tlk-feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tlk-feature-card:hover {
  background: #f0f4fb;
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.tlk-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(14, 49, 91, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.tlk-feature-card h3 {
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin: 0 0 10px;
  font-weight: 600;
}

.tlk-feature-card p {
  color: var(--tlk-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* SPLIT SECTIONS (Security, Durability, Connectivity) */
.tlk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tlk-split-content h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.tlk-split-content p {
  font-size: 1.1rem;
  color: var(--tlk-text-muted);
  margin-bottom: 30px;
}

.tlk-split-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tlk-split-list li {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-weight: 500;
}

.tlk-split-list li i {
  color: var(--primary-color);
  margin-right: 12px;
}

.tlk-split-img img {
  width: 100%;
  border-radius: 16px;
  opacity: 0.95;
}

.cta-v1-section-nm {
  background: linear-gradient(90deg, #0e315b 0%, #07203e 100%);
  padding: 60px 20px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  margin-bottom: unset;
}

/* Variante clara (página TLK general) */
.tlk-wave {
  background: #e9edf6;
  text-align: center;
}

.tlk-wave-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  text-align: left;
}

.tlk-wave-item {
  border-left: 2px solid var(--evt-accent);
  padding-left: 20px;
}

.tlk-wave-item h4 {
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin: 0 0 5px;
}

.tlk-wave-item p {
  font-size: 0.9rem;
  color: var(--tlk-text-muted);
  margin: 0;
}

/* FINAL CTA */
.tlk-final-cta {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
}

.tlk-final-cta h2 {
  font-size: 3.5rem;
  margin: 0 0 20px;
  font-weight: 900;
}

.tlk-final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin: 0 auto 40px;
  max-width: 600px;
}

.tlk-btn-black {
  background: var(--white);
  color: var(--primary-dark);
  padding: 18px 40px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
}

.tlk-btn-black:hover {
  background: #f0f4fb;
  transform: scale(1.05);
}

/* ANIMATIONS & RESPONSIVE */
@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 1024px) {
  .tlk-hero h1 {
    font-size: 3.5rem;
  }

  .tlk-split {
    grid-template-columns: 1fr;
  }

  .tlk-split-img {
    order: -1;
    margin-bottom: 40px;
  }

  .tlk-wave-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tlk-hero {
    padding: 120px 0 80px;
  }

  .tlk-features-grid {
    grid-template-columns: 1fr;
  }

  .tlk-split-list {
    grid-template-columns: 1fr;
  }

  .tlk-final-cta h2 {
    font-size: 2.5rem;
  }
}

/* --- TECHNICAL SECTIONS (Alternating) --- */
.prd-tech-section {
  background-color: var(--prd-white);
}

.prd-tech-split {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 32px 0;
}

.prd-tech-split.reverse {
  flex-direction: row-reverse;
}

.prd-tech-text {
  flex: 1;
}

.prd-tech-visual {
  flex: 1;
  height: 400px;
  background: var(--prd-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prd-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.ast-builder-menu-1 .menu-item.current-menu-item>.menu-link {
  color: #0e315b;
}

.prd-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--prd-border);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: var(--prd-text);
}

.prd-list li i {
  color: var(--evt-accent);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {

  header .custom-logo-link img {
    max-width: 200px;
    width: 385px;
}

  .prd-hero-grid,
  .prd-tech-split {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 40px;
  }

  .prd-tech-split.reverse {
    flex-direction: column;
  }

  .prd-ptx-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prd-hero-content h1 {
    font-size: 2.8rem;
  }
}

/* --- WHY CHOOSE SECTION --- */
.prd-intro {
  text-align: center;
  background: var(--prd-light);
}

.prd-intro p {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  color: var(--prd-primary);
  font-weight: 500;
}

/* --- FEATURES GRID --- */
.prd-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.prd-feature-card {
  background: var(--prd-white);
  border: 1px solid var(--prd-border);
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.prd-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--prd-accent);
}

.prd-icon-box {
  width: 50px;
  height: 50px;
  background: var(--prd-light);
  color: var(--prd-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.prd-feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--prd-primary);
}

/* ----------------------------------------------------------
   19. COMPARISON TABLE (Producto)
   ---------------------------------------------------------- */

.compare-section {
  padding: 64px 0;
  background: #e9edf6;
}

.compare-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th,
.compare-table td {
  padding: 20px 30px;
  text-align: center;
}

.compare-table th {
  background: #f8fafc;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--border-color);
}

.compare-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border-color);
}

.compare-col-feature {
  text-align: left !important;
  font-weight: 600;
  color: var(--primary-dark);
  width: 40%;
  background: #fff;
}

.compare-col-tlk {
  background: rgba(14, 49, 91, 0.03);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  font-weight: 700;
}

.compare-icon-check {
  color: #10b981;
  font-size: 1.2rem;
}

.compare-icon-cross {
  color: #ef4444;
  font-size: 1.2rem;
  opacity: 0.3;
}

.tlk-header {
  color: var(--brand-cyan) !important;
  font-size: 1.2rem !important;
}

#section-222,
#section-54507 {
  padding: 32px 0px;
  background: var(--color-bg-light);
  opacity: 0.56;
}

#section-222 .row>*,
#section-54507 .row>* {
  padding: 0px;
}

/* ----------------------------------------------------------
   20. SLIDER DE LOGOS
   ---------------------------------------------------------- */

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  background: #dae6f5;
  padding: 28px 0;
}

.slider-logo {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: scroll 25s linear infinite;
}

.slider-logo img {
  height: 68px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s ease;
}

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

/* Animación infinita */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}