<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===== RESET Y ESTILOS BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FUENTES ===== */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');
}

/* ===== HTML y BODY ===== */
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
background-color: #fffbfc;
  line-height: 1.6;
  color: #333;
  font-display: swap; /* Aunque no tiene efecto aquĆ­, se deja por coherencia */
}

body &gt; #anecdotes {
  margin-top: 0 !important;
}


/* ===== HEADER ===== */
header {
  transform: translateZ(0); /* Mejora de renderizado en algunos navegadores */
}

/* ===== TIPOGRAFĆ¨A ALTERNATIVA ===== */
.sans-serif-text {
  font-family: 'Roboto', 'Lato', 'Open Sans', sans-serif;
}



/* ===== ESTILOS GENERALES PARA TODAS LAS SECCIONES ===== */
#pop-intro-1978-1979,
#top-pop-1978,
#top-pop-1979 {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  line-height: 1.6;
}

/* Colores de fondo especĆ­ficos */
#pop-intro-1978-1979 { background-color: #fff9f0; }
#top-pop-1978 { background-color: white; }
#top-pop-1979 { background-color: white; }

/* ===== JERARQUĆ¨A DE TĆ¨TULOS (TODAS LAS SECCIONES) ===== */
/* TĆ­tulo principal (h2) */
#pop-intro-1978-1979 h2,
#top-pop-1978 h2,
#top-pop-1979 h2 {
  text-align: center;
  font-size: 2.2rem;
  margin: 0 0 1.5rem 0;
  color: #333;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* SubtĆ­tulo (h3) - Solo en #pop-intro-1978-1979 */
#pop-intro-1978-1979 h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  color: #444;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

/* ===== CONTENIDO (PĆRRAFOS Y ENLACES) ===== */
#pop-intro-1978-1979 p,
#top-pop-1978 p,
#top-pop-1979 p {
  margin: 1rem 0 !important;
}

/* Enlaces */
#pop-intro-1978-1979 a,
#top-pop-1978 a,
#top-pop-1979 a {
  text-decoration: none;
  color: #2a2a8f;
  transition: all 0.3s ease;
  font-weight: 500;
}

#pop-intro-1978-1979 a:hover,
#top-pop-1978 a:hover,
#top-pop-1979 a:hover {
  color: #8b0000;
  text-decoration: underline;
}

/* Lista de canciones (solo en top-pop) */
#top-pop-1978 p,
#top-pop-1979 p {
  margin: 0.6rem 0 !important;
  padding-left: 0.6rem !important;
  border-left: 3px solid rgba(42, 42, 143, 0.1);
}

/* ===== VERSIĆ“N MĆ“VIL (768px o menos) ===== */
@media (max-width: 768px) {
  #pop-intro-1978-1979,
  #top-pop-1978,
  #top-pop-1979 {
    padding: 0.5rem 0 !important;
    margin: 2rem 0;
  }

  /* TĆ­tulos en mĆ³vil */
  #pop-intro-1978-1979 h2,
  #top-pop-1978 h2,
  #top-pop-1979 h2 {
    font-size: 1.3rem !important;
    margin-bottom: 1.2rem;
  }

  #pop-intro-1978-1979 h3 {
    font-size: 1.2rem !important;
    margin: 1.5rem 0 0 0 !important;
  }

  /* Ajuste para listas de canciones */
  #top-pop-1978 p,
  #top-pop-1979 p {
    padding-left: 0.5rem;
    font-size: 0.85rem;
  }
}

/* ===== ESTRUCTURA GENERAL ===== */
.parent-container {
  display: block;
  min-height: 100vh;
}



/* =====================================================
   ESTRUCTURA PRINCIPAL DEL CONTENIDO
===================================================== */

.content-container {
  flex-grow: 1;
  box-sizing: border-box;
  margin-top: 0;
  margin-left: 300px;
  padding: 20px 30px 50px;
  background-color: #fffbfc;
  text-align: justify;
  width: calc(100% - 300px);
}

/* Pantallas ā‰� 1600px */
@media (min-width: 1600px) {
  .content-container {
    max-width: 1400px;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* Pantallas entre 1200px y 1599px */
@media (min-width: 1200px) and (max-width: 1599px) {
  .content-container {
    max-width: 1200px;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Tablets y portĆ�tiles ā‰¤ 992px */
@media (max-width: 992px) {
  .content-container {
    margin-left: 0;
    width: 100%;
  }
}

/* MĆ³viles ā‰¤ 576px */
@media (max-width: 576px) {
  .content-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* TelĆ©fonos compactos ā‰¤ 400px */
@media (max-width: 400px) {
  .content-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}



/* ===== ENLACES ===== */
a {
  text-decoration: none;
  color: #44459c;
}

.ash-link {
  color: #F5F5F5;
  text-decoration: none;
}

.ash-link:hover {
  color: lightblue !important;
}

.ash-link:active {
  color: #F5F5F5 !important;
}

/* ===== BOTONES ===== */
.btn-primary {
  color: white !important;
}

.external-link-btn a[target="_blank"] {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  color: #007bff;
  background-color: #f8f9fa;
  border: 2px solid #007bff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.external-link-btn a[target="_blank"]:hover {
  background-color: #007bff;
  color: #fff;
}

.external-link-btn a[target="_blank"]:active {
  transform: scale(0.96);
  opacity: 0.8;
}

.external-link-btn a[target="_blank"] i {
  margin-left: 6px;
  font-size: 0.85em;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.external-link-btn a[target="_blank"]:hover i {
  opacity: 1;
}

.custom-btn {
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  padding: 6px 16px;
  border-radius: 12px;
  color: white;
  border-color: white;
}

.btn-outline-primary.custom-btn:hover {
  background-color: #45489a;
  color: white;
  border-color: #45489a;
}

.btn-primary.custom-btn:hover {
  background-color: #323584;
}


/* ===== ImĆ�genes flotadas en pantallas grandes ===== */

.float-image-left,
.float-image-right {
  width: 320px !important;
  margin-top: 15px;
}

.float-image-left {
  float: left;
  margin-right: 40px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.float-image-right {
  float: right;
  margin-left: 40px;
  margin-bottom: 20px;
}

/* ===== Imagen centrada opcional ===== */

.float-image-center {
  display: block;
  margin: 20px auto;
  float: none;
  max-width: 100%;
  height: auto;
}

/* ===== Limpieza del flujo despuĆ©s de imĆ�genes flotadas ===== */

.clear-float {
  clear: both;
}

/* ===== Ajustes para mĆ³viles ===== */

@media (max-width: 767.98px) {
  .float-image-left,
  .float-image-right {
    float: none;
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    width: auto; /* Permite que se adapte al contenedor */
  }
}

/* Listas */
.square_bullets {
  list-style-type: square;
  text-align: left;
  padding-left: 25px;
  line-height: 2;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #333;
}

.square_bullets li {
  margin-bottom: 7px;
  padding-left: 10px;
  transition: all 0.3s ease-in-out;
}

.square_bullets li:hover {
  color: #44459c;
  transform: translateX(5px);
}

.square_bullets li a {
  color: #44459c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.square_bullets li a:hover {
  color: #2a2a6b;
  text-decoration: underline;
}

/* Citas */
.modern-quote,
.modern-quote2 {
  border-left: 4px solid #44459c !important;
  color: #5a4a42 !important;
  font-family: 'Crimson Text', serif !important;
  font-size: 1.3em !important;
  font-style: italic !important;
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 1.6 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin: 40px auto !important;
  text-align: center !important;
}

.modern-quote {
  max-width: 900px !important;
}

.modern-quote2 {
  max-width: 400px !important;
}

/* Tablas */
.styled-table {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.styled-table-container {
  width: 100%;
  overflow-x: auto;
  margin: 5px 0;
}

.styled-table th, .styled-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

.styled-table th {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}

.styled-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.styled-table tr:hover {
  background-color: #d6e4ff;
}

.italic-n {
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 50px auto;
  margin-bottom: 50px;
}

.logo-text {
  margin-left: 0;
  margin-right: 0;
}

.logo-title {
  color: gold;
  font-size: 2.1em;
  font-weight: 700;
  padding-bottom: 10px;
}

.logo-subtitle {
  color: gold;
  font-size: 1.3em;
  padding-bottom: 0;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  text-align: center;
}

/* Contenedor de float */
.float-item::after {
  content: "";
  display: block;
  clear: both;
}

/* Secciones principales */

#fun_facts,
#anecdotes,
#insights,
#projects,
#blog,
#education,
#location {
  margin-top: 30px !important;
  padding-top: 10px;
  max-width: 100%;
  overflow: hidden; /* Mantiene el comportamiento original */
}

#welcome {
  padding-top: 5px;
  margin-top: 0 !important;
  border-top: none;
}


#top {
  height: 0;
  margin: 0;
  padding: 0;
}

#anecdotes h3,
#anecdotes h4 {
  color: #45489a !important;
  font-weight: 600 !important;
}

/* Mapa */
.map-container {
  position: relative;
  width: calc(100% - 12px);
  margin: 0 auto 5px auto;
  padding-top: 56.25%;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Grid de fotografĆ­as - VersiĆ³n optimizada */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px; /* AumentĆ© el gap para mejor legibilidad */
  width: 100%;
  margin: 0 !important;
  padding: 1px 0; /* Evita que las fotos toquen los bordes */
  box-sizing: border-box;
}

.photo-item {
  width: 100%;
  aspect-ratio: 2/3; /* Se puede ajustar a otro ratio */
  overflow: hidden;
  border-radius: 5px; /* Bordes mĆ�s suaves */
  position: relative;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease; /* Efecto hover opcional */
}

.photo-item:hover img {
  transform: scale(1.03); /* Zoom sutil al interactuar */
}
/* ===== ESTILOS DEL SLIDER/HERO ===== */
.swiper-container {
  /* Ancho del slider para dejar espacio al sidebar de 300px a la izquierda */
  width: calc(100% - 300px);

  /* Desplaza el slider a la derecha para no superponer el sidebar */
  margin-left: 300px;

  /* Ocupa toda la altura visible del viewport */
  height: 100vh;

  /* Contenedor de referencia para posicionamiento absoluto de hijos */
  position: relative;

  /* Oculta el contenido que se desborde del contenedor */
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #000;
}

.swiper-slide .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* Cubre todo el espacio */
  background-position: center; /* Centra la imagen */
  opacity: 0.7;
  z-index: 1; /* Asegura que estĆ© detrĆ�s del texto */
  transition: transform 5s ease, opacity 1.5s ease;
}

.swiper-slide-active .image {
  opacity: 0.7;
  transform: scale(1.1);
}

.swiper-slide .info {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.swiper-slide .info h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.swiper-slide .info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.swiper-slide .info p {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.swiper-slide .button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.swiper-slide .button:hover {
  background-color: #45489a;
  border-color: #45489a;
  color: #fff;
}

.swiper-pagination {
  position: absolute;
  bottom: 75px !important;
  width: 100%;
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 5px;
  transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: gold;
  opacity: 1;
}

/* Flechas alineadas con los bullets (40px desde abajo) */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  position: absolute;
  bottom: 60px !important; /* Misma posiciĆ³n que los bullets */
  top: auto !important; /* Anula cualquier valor 'top' predeterminado */
}

/* Posicionamiento horizontal de las flechas */
.swiper-button-next {
  right: 60px; /* Ajusta segĆŗn el espacio deseado desde el borde derecho */
}

.swiper-button-prev {
  left: 60px; /* Ajusta segĆŗn el espacio deseado desde el borde izquierdo */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

/* Responsividad del Slider */
@media (max-width: 992px) {
  .swiper-pagination {
    left: 0;
    width: 100%;
  }
}


/* ===== ESTILOS DEL SIDEBAR ===== */

.sidebar-navigation {
  width: 300px;
  height: 100vh;
  position: fixed;
  background-color: rgba(12, 12, 12, 0.9); /* Sidebar oscuro translĆŗcido */
  z-index: 10;
  padding: 40px 35px;
  flex-shrink: 0;
}

.sidebar-navigation .nav-link {
  background: transparent;
  color: #eee;
  font-weight: normal;
}

.sidebar-navigation .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: gold;
}

.sidebar-navigation ul,
.sidebar-navigation nav ul {
  padding-left: 0;
  list-style: none;
}

.sidebar-navigation nav ul li {
  margin-bottom: 25px;
}

.sidebar-navigation nav ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.sidebar-navigation nav ul li a .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}

.sidebar-navigation nav ul li a .rect {
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.sidebar-navigation nav ul li a:hover .circle {
  background-color: #fff;
}

.sidebar-navigation nav ul li a:hover .rect {
  width: 30px;
}

/* ===== HEADER GLOBAL MOBILE MENU ===== */
header.nav-down.responsive-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;                                     /* altura base */
  background: linear-gradient(
    to right,
    rgba(42,42,42,0.2),
    rgba(69,72,154,0.7) 70%,
    rgba(108,124,255,0.85)
  ) !important;
  backdrop-filter: blur(10px);
  z-index: 999;

  display: flex;
  align-items: center;                              /* centra vertical */
  justify-content: space-between;
  padding: 0 1rem;

  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(69,72,154,0.4);
}

/* ===== BOTĆ“N HAMBURGUESA ===== */
.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 44px;                                     /* tamaĆ±o del botĆ³n */
  padding: 0 0.5rem !important;                     /* sĆ³lo horizontal */

  margin: 10px 0 10px 0.3rem !important;
  align-self: auto !important;

  background: linear-gradient(135deg, #45489a, #6c7cff) !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.2),
    0 4px 8px rgba(108,124,255,0.3);
  transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1) !important;
}

.navbar-toggler:hover {
  background: linear-gradient(135deg, #3a3d85, #5c6ef5) !important;
  transform: translateY(-3px);
  box-shadow: 
    0 4px 8px rgba(0,0,0,0.25),
    0 6px 12px rgba(108,124,255,0.4);
}

.navbar-toggler:active {
  transform: scale(0.95) translateY(1px);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3e%3cpath stroke='%23ffffff' stroke-width='2.8' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3e%3c/svg%3e") !important;
  width: 1.4em !important;
  height: 1.4em !important;
  transition: transform 0.4s ease;
}

/* ===== MENĆ DESPLEGABLE (#main-nav) AJUSTADO ===== */
#main-nav {
  position: fixed;
  top: 64px;                                        /* exactamente bajo el header */
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 360px;
  box-sizing: border-box;

  background: #f5f5f0 !important;
  color: #333;
  backdrop-filter: none;
  border-radius: 0 0 12px 12px;
  padding: 10px 0;

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.1);

  overflow-x: hidden;
  overflow-y: auto;
  z-index: 998;
}

/* ===== ITEMS DEL MENĆ ===== */
.navbar-nav {
  width: 100%;
  text-align: center;
  min-height: 120px;
}

.navbar-nav .nav-item {
  padding: 2px 0 !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-item:hover {
  transform: translateX(8px);
}

.navbar-nav .nav-link {
  display: block;
  margin: 1px 6px !important;
  padding: 6px 12px !important;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.navbar-nav .nav-link:hover {
  color: gold;
  background: linear-gradient(90deg, rgba(69,72,154,0.2), transparent);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,215,0,0.2);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: gold;
  transition: width 0.3s ease;
}

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

/* ===== BREAKPOINTS ESPECĆ¨FICOS ===== */

/* Tablet PequeĆ±a (600pxā€“767px) */
@media (min-width: 600px) and (max-width: 767.98px) {
  header.nav-down.responsive-nav {
    height: 70px;
    background: linear-gradient(
      to right,
      rgba(42,42,42,0.15),
      rgba(69,72,154,0.65) 60%,
      rgba(108,124,255,0.8)
    ) !important;
  }

  .navbar-toggler {
    height: 50px;                                 /* si ajustas altura */
    /* (70px ā€“ 50px) / 2 = 10px arriba y abajo */
    margin: 10px 0 10px 0.4rem !important;
  }

  #main-nav {
    top: 70px;                                    /* justo bajo el header */
  }

  #main-nav .nav-link {
    font-size: 15px !important;
    padding: 8px 20px !important;
  }
}


/* iPhones Mini/SE (ā‰¤374px) */
@media (max-width: 374.98px) {
  header.nav-down.responsive-nav {
    height: 55px;
  }

  .navbar-toggler {
    height: 40px;
    padding: 0 0.4rem !important;
    /* (55px ā€“ 40px) / 2 = 7.5px ā†’ redondeamos a 6px arriba y abajo */
    margin: 6px 0 6px 0.4rem !important;
  }

  #main-nav {
    top: 55px;                                   /* coincide con header */
  }

  .navbar-toggler-icon {
    width: 1.3em !important;
    height: 1.3em !important;
  }

  #main-nav .nav-link {
    font-size: 13px !important;
    padding: 6px 12px !important;
  }
}


/* Landscape Mobile (ā‰¤767px) */
@media (orientation: landscape) and (max-width: 767.98px) {
  .navbar-toggler {
    position: absolute;
    right: 20px !important;
    left: auto !important;
    margin: 0.6rem 0 0.6rem 0.4rem !important;   /* conserva margen lateral */
  }

  header.nav-down.responsive-nav {
    background: linear-gradient(
      to left,
      rgba(42,42,42,0.2),
      rgba(69,72,154,0.7) 70%,
      rgba(108,124,255,0.85)
    ) !important;
  }

  #main-nav {
    max-height: 65vh;
    border-radius: 0 0 16px 16px;
  }
}


/* Desktop (ā‰�768px) ā€“ Ocultar menĆŗ mĆ³vil */
@media (min-width: 768px) {
  header.nav-down.responsive-nav {
    display: none;
  }
}



/* === SECCIĆ“N CONTACTO === */
#contact {
  margin-top: 30px !important;
  padding-top: 10px;
  overflow: visible;
  border-radius: 16px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* Contenedor de pestaĆ±as NEWSAPI &amp; GNEWS */
.tab-container {
  margin-top: 20px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.tab-button {
  padding: 10px 20px;
  background-color: #2d2d2d;
  border: 1px solid #444;
  border-radius: 5px;
  color: gold;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
  transition: background-color 0.3s ease;
}

.tab-button.active {
  background-color: #45489a;
  border-color: #45489a;
}

.tab-button:hover {
  background-color: #333;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}


/* ===== ESTILOS DE INSIGHTS/PROYECTOS ===== */
.wrapper {
  position: relative; 
}

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

.insights-item-wrapper {
  background-color: #f8f9ff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.insights-item-wrapper:hover {
  background-color: #eef2ff;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.insights-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.insights-text {
  text-align: center;
  margin-top: 1rem;
}

.insights-text h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.insights-text span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #777;
  display: block;
  margin-bottom: 1rem;
}

.insights-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  margin: 10 auto;
}


/* =============================================
   RESPONSIVE: INSIGHTS - MĆ“VIL (ā‰¤600px) 
   ============================================= */
@media (max-width: 600px) {
  .insights-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 5px; /* PequeĆ±o padding para evitar tocar bordes */
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .insights-item-wrapper {
    width: 100% !important;
    margin: 0 auto !important; /* Centrado sin cĆ�lculos complejos */
    padding: 5px; /* Espacio interno preservado */
    border-radius: 12px !important; /* Bordes curvos mantenidos */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important; /* Sombra sutil */
    overflow: hidden; /* Contenido dentro de bordes */
  }

  .insights-image {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .insights-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Centrado horizontal */
    border-radius: 5px;
    object-fit: contain;
  }

  .insights-text {
    padding: 0 5px; /* PequeĆ±o padding para texto */
    box-sizing: border-box;
    width: 100%;
  }
}

/* ===== ESTILO DEL SĆ¨MBOLO DIVISORIO ENTRE TITULO DE SECCIONES Y CONTENIDO ===== */

.symbol-divider {
  margin-top: 15px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  text-align: center;
}


.symbol-divider span {
  display: inline-block; /* Asegura centrado */
  font-size: 1.2em;
  color: #45489a;
}


/* ===== ESTILO del CAPTION DE LAS IMĆGENES ===== */
.image-caption {
  font-family: 'Open Sans Condensed', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: #44459c !important;
  text-align: center !important;
  margin: 0.8rem 0 1rem 0 !important;
  line-height: 1.3 !important; /* Reducido para mĆ�s compacto */
  letter-spacing: -0.01rem; /* Opcional: ajusta el espaciado entre letras */
}


/*ā•”ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā• ā•ā•ā•ā•ā•—
   ā•‘ Contenedor principal del televisor ā•‘
   ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā• ā•ā•¯ */
.tv-container {
  position: relative;
  width: 100%;
  max-width: 495px;
  aspect-ratio: 495 / 433;
  margin: 0 auto;
}

/* ā•”ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•—
   ā•‘ Pantalla interior: zona visible del video     ā•‘
   ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•¯ */
.tv-screen {
  position: absolute;
  top: 56px;
  left: 36.3px;
  width: 422.4px;
  height: 316.8px;
  overflow: hidden;
  z-index: 1;
  transform: translateY(-20.2px);
}

/*ā•”ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•—
   ā•‘ Video embebido dentro del hueco de la TV ā•‘
   ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•¯ */
.tv-video {
  width: 1920px;
  height: 1440px;
  transform: scale(0.22);
  transform-origin: top left;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  display: block;
}

/* ā•”ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•—
   ā•‘ Marco grĆ�fico del televisor (frame) ā•‘
   ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•¯ */
.tv-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;                      /* ā¬…ļø¸ antes estaba en px */
  height: 100%;                     /* ā¬…ļø¸ antes estaba en px */
  background: url('../img/Sony-TV-Marco-Recortado.png') no-repeat top left;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}

/* ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•
   ā•ā• Ajuste responsivo para pantallas pequeĆ±as (&lt;= 480px)
   ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā•ā• */
@media (max-width: 480px) {
  .tv-container {
    max-width: 100%;  /* Asegura que el contenedor no exceda el ancho de la pantalla */
  }

  .tv-screen {
    position: absolute;
    top: 11.31%;  /* 56px/495px (proporcional) */
    left: 7.33%;  /* 36.3px/495px (proporcional) */
    width: 85.33%;  /* 422.4px/495px (proporcional) */
    height: 73.16%;  /* 316.8px/433px (proporcional) */
    transform: translateY(-4.08%);  /* 20.2px/495px (proporcional) */
    overflow: hidden;  /* Recorta el exceso sin afectar el centrado */
  }

  .tv-video {
    width: 1920px;
    height: 1440px;
    transform: scale(0.16);
    transform-origin: top left;  /* Ā�Cambiado a top left para control preciso! */
    position: absolute;
    left: calc(50% - (1920px * 0.16 / 2));  /* Centrado matemĆ�tico exacto */
    top: 0;
  }
}





/* ===== ESTILOS RESPONSIVOS GENERALES ===== */

/* --- ā‰¤ 992px --- */
@media (max-width: 992px) {
  .sidebar-navigation {
    display: none;
  }

  .swiper-container {
    width: 100% !important;
    margin-left: 0 !important;
  }

  
  .swiper-slide .info h2 {
    font-size: 2rem;
  }

  .swiper-slide .info p {
    font-size: 1rem;
  }

  header.nav-down.responsive-nav {
    display: block;
  }
}

  /* Tablas */
  .styled-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .styled-table {
    min-width: 500px;
  }
}

/* --- ā‰¤ 690px --- */
@media (max-width: 690px) {
  .photo-grid,
  .insights-container {
    grid-template-columns: 1fr;
  }
}

/* --- MĆ³vil (ā‰¤690px) --- */
@media (max-width: 690px) {
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Asegura que el contenedor de cada foto ocupe el 100% */
  .photo-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

/* --- ā‰¤ 480px --- */
@media (max-width: 480px) {
  .footer {
    font-size: 12px;
    padding: 10px;
  }

  .footer p:first-child {
    margin-bottom: 5px;
  }

  .custom-btn {
    padding: 5px 12px;
    font-size: 11px;
  }
}

/* --- ā‰� 768px --- */
@media (min-width: 768px) {
  header.nav-down.responsive-nav {
    display: none;
  }
}

/* --- Tablets en horizontal --- */
@media (min-width: 768px) and (max-width: 991.98px) and (orientation: landscape) {
  .float-image-left,
  .float-image-right {
    width: 220px;
  }

  .float-image-left {
    margin-right: 25px;
  }

  .float-image-right {
    margin-left: 25px;
  }
}



/* Conmutador de idioma */
.language-switcher {
  text-align: right;
  margin: 0 0 1.2rem 1rem; /* 0 arriba, mĆ�s aire debajo */
}

/* Botones */
.lang-btn {
  background-color: #44459c;
  border: 1px solid transparent;
  border-radius: 5px;
  color: white;
  display: inline-block;
  font-family: inherit;
  font-size: 0.9rem;

  margin-left: 8px !important;  /* Solo si querĆ©s separaciĆ³n entre botones */
  padding: 6px 10px;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s;
  vertical-align: middle;
}


.lang-btn:hover {
  background-color: white;
  color: #44459c;
  border-color: #44459c;
  text-decoration: none;
}

/* Ajustes para pantallas pequeĆ±as */
@media (max-width: 576px) {
  .language-switcher {
    margin-bottom: 1.8rem; /* mĆ�s separaciĆ³n del siguiente tĆ­tulo */
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 1.1rem;
    background-color: #f3e8ff; /* lila pastel muy claro */
    color: #222;
    border: 1px solid #ccc;
  }

  .lang-btn span.text {
    display: none;
  }

  .lang-btn:hover {
    background-color: #e0d4f7; /* un tono mĆ�s intenso al hacer hover */
    color: #222;
    border-color: #aaa;
  }
}

/* ===== AutorĆ­a de ANĆ‰CDOTAS ===== */
.meta-block {
  font-size: 0.95rem;
  color: #44459c !important;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}


.meta-author::before,
.meta-date::before {
  content: '';
  margin-right: 0.3rem;
}

.meta-author {
  font-weight: 500;
}

.meta-date {
  font-style: normal;
}

.highlighted-anecdote {
  margin-top: 1.5em;
  padding: 1em 1.5em;
  background-color: #fdfdfd;
  border-left: 4px solid goldenrod;
  border-radius: 6px;
}


.anecdote-issue {
    font-size: 0.95em;
    color: #888;
    margin-bottom: 0.4em;
}


.anecdote-link,
.anecdote-link:visited,
.anecdote-link:hover,
.anecdote-link:active {
    color: #44459c !important;
    text-decoration: none; /* opcional: quita el subrayado */
}








/* ==========================================================================
   1) Reset de contenedores extra (estructura limpia)
   ========================================================================== */
#news.content-section,
#news .news-content,
#news .section-heading,
#news .section-content,
#news .tabs-content,
#news .wrapper {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   2) Tabs Mobile-First: 3 pestaĆ±as iguales, sin scroll
   ========================================================================== */
/* Contenedor de pestaĆ±as */
#news .tabs.clearfix {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;            /* ā† sin scroll en mĆ³vil */
  justify-content: space-between;
  padding: 10px 0;               /* vertical */
  gap: 0;                        /* ā† sin separaciĆ³n */
  background-color: rgba(200, 190, 230, 0.15);
  border-bottom: 10px solid #45489a;
  box-sizing: border-box;
}

/* Cada pestaĆ±a */
#news .tabs.clearfix li {
  flex: 1 1 0;                   /* ā† ancho igualitario */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Enlaces de pestaĆ±as */
#news .tabs.clearfix a {
  display: flex;
  align-items: center;
  justify-content: center;       /* ā† centra texto e iconos */
  white-space: normal;           /* ā† permite salto de lĆ­nea */
  padding: 10px 0;               /* ā† solo vertical */
  width: 100%;                   /* ā† fuerza ancho completo */
  background-color: #f0f0f0;
  border-radius: 5px;
  color: #232323;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: capitalize;
  text-decoration: none;
  transition: background-color .3s ease, color .3s ease;
}

/* Hover y activo */
#news .tabs.clearfix a.active,
#news .tabs.clearfix a:hover {
  background-color: #45489a;
  color: #fff;
}

/* Toggle mes largo/corto */
#news .tabs.clearfix .month-long  { display: none; }
#news .tabs.clearfix .month-short { display: inline; }

/* Archivo con icono y flecha */
#news .tabs.clearfix .archive-tab {
  background-color: #c5c7ee;
  color: #fff;
  font-size: 16px;
  position: relative;
}
#news .tabs.clearfix .archive-tab i {
  margin-right: 5px;
  color: #b87333;
}
#news .tabs.clearfix .archive-tab::after {
  content: ' ā–¼';
  font-size: 12px;
  margin-left: 3px;
}

/* ==========================================================================
   3) Desktop (ā‰�769px): vuelve reparto clĆ�sico
   ========================================================================== */
@media (min-width: 769px) {
  #news .tabs.clearfix {
    overflow-x: hidden;
    justify-content: space-between;
    padding: 10px 0;
  }
  #news .tabs.clearfix li {
    flex: 1;                     /* ā† reparto clĆ�sico */
  }
  #news .tabs.clearfix a {
    font-size: 18px;
  }
  /* Mostrar solo mes largo */
  #news .tabs.clearfix .month-long  { display: inline; }
  #news .tabs.clearfix .month-short { display: none; }
}

/* ==========================================================================
   4) Ajustes extra para pantallas muy pequeĆ±as (ā‰¤480px)
   ========================================================================== */
@media (max-width: 480px) {
  #news .tabs.clearfix {
    gap: 5px;                   /* ā† opcional si quieres algo de separaciĆ³n mĆ­nima */
    padding: 10px 10px;
  }
}

/* ==========================================================================
   5) Tabgroup: mostrar solo el contenido activo
   ========================================================================== */
#news .tabgroup &gt; div {
  display: none;
}
#news .tabgroup &gt; div.active {
  display: block;
}

/* ==========================================================================
   6) Limpieza de mĆ�rgenes en listas e imĆ�genes dentro de tabgroup
   ========================================================================== */
#news .tabgroup ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#news .tabgroup ul li {
  margin: 0 0 20px 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
}
#news .tabgroup ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* ImĆ�genes simĆ©tricas */
#news .tabgroup ul li img {
  display: block;
  max-width: 100%;
  margin: 0 15px !important; /* ā† mĆ�rgenes iguales */
}

#news .item .text-content {
  margin: 20px 0 20px 0;
  padding: 0;
}

/* ==============================
   Restaurar float de imagen + texto al lado (Desktop)
   ============================== */
@media (min-width: 769px) {
  /* La imagen flota a la izquierda con espacio a su derecha */
  #news .tabgroup ul li img {
    float: left;
    margin-right: 30px !important;
    width: 302px;    /* igual que tus estilos inline */
    height: 230px;   /* igual que tus estilos inline */
    object-fit: cover;
  }

  /* El contenedor de texto ocupa el espacio restante junto a la imagen */
  #news .tabgroup ul li .text-content {
    display: block;      /* bloque para tomar todo el ancho disponible */
    overflow: hidden;    /* contiene el float y fuerza el wrap correcto */
  }

  /* Limpieza de float al final de cada Ć­tem */
  #news .tabgroup ul li::after {
    content: "";
    display: table;
    clear: both;
  }
}



/* =====================================================
   SECCIONES GENERALES
===================================================== */
.content-section {
  margin: 20px 0;
}

/* =====================================================
   ENCABEZADOS DE SECCIĆ“N
===================================================== */
.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.section-heading h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #555;
}

.section-heading h4 {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #444;
}

.section-heading em {
  font-style: normal;
  font-weight: 700;
  color: #45489a !important;
}

/* ==============================================
   SUBTĆ¨TULOS DESTACADOS ā€” DOMINIO INSIGHT
================================================= */
.subheading {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem !important;              /* base desktop */
  line-height: 1.5;
  color: #45489a !important;   
  display: block;
  text-align: justify;
  text-align-last: left;
  margin: 1rem 0 1.5rem;

  hyphens: auto;
  word-break: break-word;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 2;

  -webkit-hyphens: auto;
     -moz-hyphens: auto;
      -ms-hyphens: auto;
}

/* ==============================================
   RESPONSIVIDAD ā€” AJUSTES DE `.subheading`
================================================= */
@media (max-width: 768px) {
  .subheading {
    font-size: 1.1rem !important;
    line-height: 1.4;
    margin: 0.75rem 0 1.25rem;
    padding: 0 4px;
  }

.section-heading h2 {
  font-size: 1.4rem !important;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.section-heading h3 {
  font-size: 0.9rem !important;
  margin-bottom: 2rem;
  color: #555;
}

.section-heading h4 {
  font-size: 0.9rem;
  margin: 1rem 0;
  color: #444;
}

.section-heading em {
  font-style: normal;
  font-weight: 700;
  color: #45489a !important;
}


/* Citas */
.modern-quote,
.modern-quote2 {
  border-left: 4px solid #44459c !important;
  color: #5a4a42 !important;
  font-family: 'Crimson Text', serif !important;
  font-size: 1.1em !important;
  font-style: italic !important;
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 1.6 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin: 40px auto !important;
  text-align: center !important;
}

.modern-quote {
  max-width: 900px !important;
}

.modern-quote2 {
  max-width: 400px !important;
}

}

@media (max-width: 480px) {
  .subheading {
    font-size: 0.8rem;
    margin: 0.5rem 0 1rem;
    hyphenate-limit-chars: 5 2 2;
  }
}

/* =====================================================
   BLOQUE FINAL: SWITCHER DE SUBDOMINIOS + IDIOMAS
   (Ā�PĆ©galo al final de tu insight.css!)
===================================================== */
.switcher-container {
  display: flex;
  justify-content: space-between;
  align-items: center;     /* alinea verticalmente ambos grupos */
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;

  margin-top: 20px;        /* distancia desde el header */
  margin-bottom: 10px;     /* espacio compacto antes del contenido */
  padding: 0 12px;         /* quita 12px a cada lado para mĆ³viles pequeĆ±os */
  gap: 8px;                /* separaciĆ³n uniforme entre grupos */
}

/* ā€” Grupos interno ā€” */
.switcher-container .subdomain-switcher,
.switcher-container .language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;                /* separaciĆ³n interna */
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ā€” Botones de icono (tamaĆ±o y centrado uniforme) ā€” */
.switcher-container .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 1.4rem;

  background-color: #e6e6ff;
  color: #2a2a6b;
  border: 1px solid transparent;
  border-radius: 5px;

  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Centrado extra para el contenido interno (p.ej. &lt;span class="flag"&gt;š‡Ŗš‡ø&lt;/span&gt;) */
.switcher-container .icon-btn &gt; * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ā€” Estados ā€” */
.switcher-container .icon-btn.activo {
  background-color: #6b6eca;
  color: #fff;
  border-color: #5050a2;
  font-weight: bold;
}

.switcher-container .icon-btn:not(.activo):hover {
  background-color: #d4d4f4;
  transform: translateY(-1px);
}

.switcher-container .icon-btn:active {
  transform: translateY(0);
}

/* =====================================================
   ADAPTACIONES PARA MĆ“VIL
===================================================== */
@media (max-width: 576px) {
  .switcher-container {
    /* MantĆ©n TODO en una fila */
    display: flex;
    flex-wrap: nowrap;             /* Ā�Nunca dos filas! */
    justify-content: space-between;
    
    /* Espacio contra el header y sin huecos abajo */
    margin-top: 80px;              /* despeja el header fijo */
    margin-bottom: 0 !important;   /* elimina espacio inferior */
    
    /* Reduce laterales y gap */
    padding: 0 6px;
    gap: 4px;
    
    /* Permite scroll horizontal si hiciera falta */
    overflow-x: auto;
  }

  /* Agrupa siempre en la misma lĆ­nea */
  .switcher-container .subdomain-switcher,
  .switcher-container .language-switcher {
    flex: 0 0 auto;   /* no cambian de tamaĆ±o ni de fila */
  }

  /* Botones mĆ�s compactos, Ā�pero manteniendo todo en la fila! */
  .switcher-container .icon-btn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}


@media (min-width: 577px) and (max-width: 768px) {
  .switcher-container {
    margin-top: 40px; /* un poco mĆ�s de colchĆ³n en tablets */
  }
}


/* ==========================================================================
   1) Reset de contenedores extra (estructura limpia)
   ========================================================================== */
#anecdotes.content-section,
#anecdotes .sections-content,
#anecdotes .section-heading,
#anecdotes .section-content,
#anecdotes .tabs-content,
#anecdotes .wrapper {
  width: 100%;
  margin-top: 20px !important;
  margin-bottom: 20px;
  padding: 0;
  box-sizing: border-box;
}
</pre></body></html>