/* Fonts */
:root {
  --default-font: "Myriad Pro", sans-serif;
  --heading-font: "Myriad Pro", sans-serif;
  --nav-font: "Myriad Pro", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1B4580; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --vbw-color: #16283A; /*color fuente y fondos vbw*/
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ef6603; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

.background-difuminado {
  background: linear-gradient(
    to right,
    #C3E0F6,   /* azul claro (lado izquierdo) */
    #94D2D9    /* verde menta azulado (lado derecho) */
  );
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.color-principal{
  color: var(--vbw-color) !important;
}

.section.background-vbw {
  background-color: var(--vbw-color);
}

.section.background-sand{
  background-color: #E5C9AD;
}

.background-sand{
  background-color: #E5C9AD;
}

.info-split img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

#about {
  padding-top: 20px;
  padding-bottom: 20px;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

/* Tamaño por defecto (desktop estándar) */
.section-title p {
  color: var(--heading-color);
  margin: -30px;
  font-size: 25px;
  font-weight: 700;
  font-family: "myriad-pro", sans-serif;
}

.info .title-places p{
  font-size: 14px;
}

/* Pantallas grandes (≥1400px) */
@media (min-width: 1400px) {
  .section-title p {
    font-size: 30px;  /* un poco más grande */
    margin: -25px;    /* ajustar margen si es necesario */
  }
}

/* Pantallas muy grandes (≥1600px) */
@media (min-width: 1600px) {
  .section-title p {
    font-size: 34px;  /* escala progresiva */
    margin: -20px;
  }
}

/* Pantallas menores a 992px (tablet) */
@media (max-width: 992px) {
  .section-title p {
    font-size: 18px;
    margin: -10px;
  }
}

/* Pantallas menores a 768px (móvil grande) */
@media (max-width: 768px) {
  .section-title p {
    font-size: 18px;
    margin: -10px;
  }
  .info .title-places p{
    font-size: 13px;
  }
}

/* Pantallas menores a 480px (móvil chico) */
@media (max-width: 480px) {
  .section-title p {
    font-size: 10px;
    margin: -10px;
  }
  .info .title-places p{
    font-size: 11px;
  }
}

/* Tamaño por defecto (desktop estándar) */
.section-title-vb p {
  color: var(--heading-color);
  margin: -30px;
  font-size: 25px;
  font-family: "myriad-pro", sans-serif;
}

.info .title-places p{
  font-size: 14px;
}

/* Pantallas grandes (≥1400px) */
@media (min-width: 1400px) {
  .section-title-vb p {
    font-size: 24px;  /* un poco más grande */
    margin: -25px;    /* ajustar margen si es necesario */
  }
}

/* Pantallas muy grandes (≥1600px) */
@media (min-width: 1600px) {
  .section-title-vb p {
    font-size: 26px;  /* escala progresiva */
    margin: -20px;
  }
}

/* Pantallas menores a 992px (tablet) */
@media (max-width: 992px) {
  .section-title-vb p {
    font-size: 20px;
    margin: -10px;
  }
}

/* Pantallas menores a 768px (móvil grande) */
@media (max-width: 768px) {
  .section-title-vb p {
    font-size: 14px;
    margin: -10px;
  }
  .info .title-places p{
    font-size: 13px;
  }
}

/* Pantallas menores a 480px (móvil chico) */
@media (max-width: 480px) {
  .section-title-vb p {
    font-size: 8px;
    margin: -10px;
  }
  .info .title-places p{
    font-size: 11px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

#hero {
  position: relative;
  overflow: hidden;
}

#hero .img-fondo {
  width: 100%;
  display: block;
}

#hero .idiomas {
  position: absolute;
  top: 50px;
  right: 100px;
  display: flex;
  gap: 30px;
}

/* Caja del mismo tamaño para todas */
.flag-box {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagen se ajusta sin deformarse */
.flag-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* ========================= */
/* HERO - Pantallas grandes  */
/* ========================= */

/* Desktop grande ≥1400px */
@media (min-width: 1400px) {
  #hero .idiomas {
    top: 60px;   /* más alto */
    right: 120px; /* más a la derecha */
    gap: 35px;   /* más separación */
  }

  .flag-box {
    width: 70px;
    height: 46px;
  }
}

/* Desktop muy grande ≥1600px */
@media (min-width: 1600px) {
  #hero .idiomas {
    top: 70px;
    right: 140px;
    gap: 40px;
  }

  .flag-box {
    width: 80px;
    height: 50px;
  }
}

/* ========================= */
/* Responsive existentes     */
/* ========================= */

/* Tablet grande */
@media (max-width: 1200px) {
  #hero .idiomas {
    top: 40px;
    right: 60px;
    gap: 20px;
  }

  .flag-box {
    width: 55px;
    height: 36px;
  }
}

/* Tablet normal */
@media (max-width: 992px) {
  #hero .idiomas {
    top: 30px;
    right: 40px;
    gap: 15px;
  }

  .flag-box {
    width: 50px;
    height: 34px;
  }
}

/* Celulares grandes */
@media (max-width: 768px) {
  #hero .idiomas {
    top: 20px;
    right: 40px;
    gap: 10px;
  }

  .flag-box {
    width: 42px;
    height: 28px;
  }
}

/* Celulares pequeños */
@media (max-width: 480px) {
  #hero .idiomas {
    top: 15px;
    right: 30px;
    gap: 8px;
  }

  .flag-box {
    width: 36px;
    height: 24px;
  }
}

#hero img {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Textos Section
--------------------------------------------------------------*/
#parrafo{
  padding-left: 90px;
  padding-right: 90px;
}
/* CONTENEDOR GENERAL */
#texto {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;   /* 👈 permite que text1 baje */
  gap: 10px;
}


/* Imagen principal */
#text2 {
  width: 100%;
  max-width: 1100px;  /* 👈 más grande que antes */
  height: auto;
  padding: 20px;
  box-sizing: border-box;
}

@media (min-width: 1400px) {
  #text2 {
    max-width: 1300px;
  }
}

/* Imagen secundaria (siempre más pequeña) */
#text1 {
  width: 100%;
  max-width: 200px;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
}

#text3 {
  width: 100%;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
}

/* ========================= */
/* TEXTO - Pantallas grandes */
/* ========================= */

/* Desktop grande ≥1600px */
@media (min-width: 1600px) {
  #text2 {
    max-width: 1500px;  /* un poco más ancha */
    padding: 30px;
  }

  #text1 {
    max-width: 250px;   /* proporcional a la principal */
    padding: 25px;
  }
}

/* Desktop muy grande ≥1800px */
@media (min-width: 1800px) {
  #text2 {
    max-width: 1700px;
    padding: 40px;
  }

  #text1 {
    max-width: 280px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  #text1 {
    max-width: 140px;
  }
}

@media (max-width: 480px) {

  /* Imagen principal sigue mandando */
  #text2 {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  /* Imagen secundaria se reduce de verdad */
  #text1 {
    width: auto;           /* 👈 clave */
    max-width: 80px;      /* 👈 SIEMPRE menor */
    padding: 8px;
  }
}

/*--------------------------------------------------------------
# Personajes Section
--------------------------------------------------------------*/
#personajes {
  padding-top: 0px;
  padding-bottom: 25px;
}

.personajes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* Celulares y tablets ≤768px */
@media (max-width: 768px) {
  .personajes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.personajes-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}


/*--------------------------------------------------------------
# Info Section
--------------------------------------------------------------*/
.info h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
  padding-left: 40px;
  padding-right: 40px;
}

/* Desktop muy grande ≥1600px */
@media (min-width: 1600px) {
  .info h3 {
    font-size: 36px; /* más grande en ultrawide */  
  }
}

/* Desktop grande ≥1400px */
@media (min-width: 1400px) and (max-width: 1599px) {
  .info h3 {
    font-size: 32px; /* un poco más grande */
  }
}

/* Desktop normal ≤1200px */
@media (max-width: 1200px) {
  .info h3 {
    font-size: 26px;
  }
}

/* Tablet ≤992px */
@media (max-width: 992px) {
  .info h3 {
    font-size: 24px;
  }
}

/* Tablet grande / móvil grande ≤768px */
@media (max-width: 768px) {
  .info h3 {
    font-size: 22px;
  }
}

/* Móvil pequeño ≤480px */
@media (max-width: 480px) {
  .info h3 {
    font-size: 18px;
  }
}

.info-split h3{
    color: #E5C9AD;
    font-size: 24px;
  }

/* Desktop muy grande ≥1600px */
@media (min-width: 1600px) {
  .info-split h3 {
    font-size: 44px; /* más grande en ultrawide */  
  }
}

/* Desktop grande ≥1400px */
@media (min-width: 1400px) and (max-width: 1599px) {
  .info-split h3 {
    font-size: 40px; /* un poco más grande */
  }
}

@media (max-width: 1200px) {
  .info-split h3 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .info-split h3 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .info-split h3 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .info-split h3 {
    font-size: 18px;
  }
}

#dorado{
  color: #E5C9AD;
  font-size: 30px;
}

@media (max-width: 480px) {
  #dorado {
    font-size: 18px;
  }
}

.info h6 {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 700;
  padding-left: 40px;
  padding-right: 40px;
}

.actividades-row {
  justify-content: center; /* 👈 junta todo visualmente */
}

.bloque-actividad {
  align-items: center;
  justify-content: center;
  gap: 16px;              /* menos aire */
  margin-bottom: 15px;
}


/* Imagen */
.col-img img {
  width: 100%;
  max-width: 200px;   /* un poco más chica */
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* Lista */
.lista-2 {
  display: flex;
  align-items: center;
}

.lista-actividades {
  font-size: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-paises {
  font-size: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.espacio-lista{
  display: flex;
  justify-content: space-between;
}


/* Desktop muy grande ≥1600px */
@media (min-width: 1600px) {
  .bloque-actividad {
    gap: 24px;        /* más espacio entre imagen y lista */
  }

  .col-img img {
    max-width: 280px; /* imágenes más grandes */
    height: 360px;
  }

  .lista-actividades {
    font-size: 24px;  /* lista más grande */
  }
}

/* Desktop grande ≥1400px y <1600px */
@media (min-width: 1400px) and (max-width: 1599px) {
  .bloque-actividad {
    gap: 20px;
  }

  .col-img img {
    max-width: 240px;
    height: 320px;
  }

  .lista-actividades {
    font-size: 22px;
  }
}

/* Desktop normal ≤1200px ya definido */
@media (max-width: 1200px) {
  .lista-actividades {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .lista-actividades{
    font-size: 16px;
    }
  }

@media (max-width: 992px) {
  .bloque-actividad {
    flex-wrap: nowrap;   /* 👈 NO se apilan */
  }

  .col-img img {
    max-width: 170px;
    height: 220px;
  }

  .lista-actividades {
    font-size: 14px;
  }
}

@media (max-width: 680px) {

  .bloque-actividad {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
  }

  /* imagen centrada */
  .bloque-actividad > .col-img {
    display: flex;
    justify-content: center;
  }

  /* lista alineada a la izquierda */
  .bloque-actividad > .lista-2 {
    display: flex;
    justify-content: flex-start; /* 👈 clave */
  }

  .lista-2 {
    max-width: 260px;
    width: 100%;
  }

  .lista-actividades {
    font-size: 12px;
    text-align: left;
  }

  .col-img img {
    max-width: 200px;
  }
}

/* Por defecto: tipografía fluida */
.lista-info ul {
  font-size: clamp(12px, 1.1vw, 18px);
  line-height: 1.4;
  list-style: none;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0;
}

/* Desktop grande ≥1400px */
@media (min-width: 1400px) {
  .lista-info ul {
    font-size: clamp(16px, 1.2vw, 22px);
    line-height: 1.5;
  }
}

/* Desktop muy grande ≥1600px */
@media (min-width: 1600px) {
  .lista-info ul {
    font-size: clamp(18px, 1.3vw, 24px);
    line-height: 1.6;
  }
}

/* Mobile: apilar listas */
@media (max-width: 480px) {
  .lista-info .col-8,
  .lista-info .col-4 {
    width: 100%;          /* cada columna ocupa toda la fila */
    margin-bottom: 12px;  /* separador visual */
  }

  .lista-info ul {
    font-size: 12px;       /* letra más pequeña y legible */
    line-height: 1.3;
  }
}

.lista-info li {
  overflow-wrap: anywhere;
}


.info p {
  color: var(--default-color);
  font-size: 16px;
  padding-left: 40px;
  padding-right: 40px;
}

/* Pantallas grandes ≥1400px */
@media (min-width: 1400px) {
  .info p {
    font-size: 18px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Pantallas muy grandes ≥1600px */
@media (min-width: 1600px) {
  .info p {
    font-size: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Pantallas ultra grandes ≥1920px */
@media (min-width: 1920px) {
  .info p {
    font-size: 22px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1200px) {
  .info p{
    font-size: 14px;
    }
  }

@media (max-width: 992px) {
  .info p{
    font-size: 12px;
    }
  }

@media (max-width: 768px) {
  .info p{
    font-size: 10px;
    }
  }

@media (max-width: 480px) {
  .info p{
    font-size: 8px;
    }
  }

.info span{
  font-weight: bold;
}

#resaltar{
  color: #94D2D9;
}

.info .text-white-local{
  color: #fff;
  font-size: 18px;
}

@media (max-width: 768px) {
  .info .text-white-local{
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .info .text-white-local{
    font-size: 12px;
  }
}


.info .col-3,
.info .col-6 {
  padding-left: 0px;
  padding-right: 0px;
}

.info-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
}

/* Centro con 2 imágenes */
.center-images {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.center-images img {
  width: 50%;
}

@media (max-width: 992px) {

  .center-block {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .left-block {
    order: 2;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .right-block {
    order: 3;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {

  .info-block {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    order: unset !important;
  }

  .center-images {
    flex-direction: column;
  }

  .center-images img {
    width: 100%;
  }

  .info-block img {
    height: 200px;
  }
}

.gallery {
  margin-top: 10px;
}

.gallery img {
  width: 100%;
  height: 280px;      /* igual que tu otra galería */
  object-fit: cover; /* recorte limpio */
  border-radius: 12px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .gallery img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .gallery img {
    height: 200px;
  }
}

.gallery img.img-vertical {
  width: auto !important;
  height: 280px !important;
  max-width: 100%;
  object-fit: contain !important;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery img.img-vertical {
    height: 240px !important;
  }
}

@media (max-width: 480px) {
  .gallery img.img-vertical {
    height: 200px !important;
  }
}

/* Pantallas grandes ≥1400px */
@media (min-width: 1400px) {
  .gallery img {
    height: 320px;
  }

  .gallery img.img-vertical {
    height: 320px !important;
  }
}

/* Pantallas muy grandes ≥1600px */
@media (min-width: 1600px) {
  .gallery img {
    height: 360px;
  }

  .gallery img.img-vertical {
    height: 360px !important;
  }
}

/* Pantallas ultra grandes ≥1920px */
@media (min-width: 1920px) {
  .gallery img {
    height: 400px;
  }

  .gallery img.img-vertical {
    height: 400px !important;
  }
}

.video-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.video-box{
  position: relative;
  cursor: pointer;
}

.play-button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.5);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-box:hover .play-button{
  transform: translate(-50%,-50%) scale(1.1);
}


.paisajes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.paisajes-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* Celulares */
@media (max-width: 768px) {
  .paisajes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .paisajes-grid img{
    width: 100%;
    height: 100px;
  }
}

#tabla-espacio{
  padding-top: 20px;
  padding-bottom: 20px;
}

.redes {
  margin: 40px 0;
}

.redes h3 {
  font-size: 30px;
  margin: 0;
}

.redes img {
  width: 40px;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .redes h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .redes h3 {
    font-size: 20px;
  }

  .redes img {
    width: 32px;
  }
}

@media (max-width: 480px) {
  .redes h3 {
    font-size: 16px;
  }

  .redes img {
    width: 24px;
  }
}

/* Pantallas grandes ≥1400px */
@media (min-width: 1400px) {
  .redes h3 {
    font-size: 32px;
  }

  .redes img {
    width: 48px;
  }
}

/* Pantallas muy grandes ≥1600px */
@media (min-width: 1600px) {
  .redes h3 {
    font-size: 34px;
  }

  .redes img {
    width: 52px;
  }
}

/* Pantallas ultra grandes ≥1920px */
@media (min-width: 1920px) {
  .redes h3 {
    font-size: 36px;
  }

  .redes img {
    width: 56px;
  }
}

.col-md-9 {
  display: flex;
  align-items: center;     /* vertical */
}

.tabla-responsive {
  width: 100%;
  overflow-x: auto;
}

.tabla-responsive table th,
.tabla-responsive table td {
  font-size: 16px;
  padding: 12px 8px;
}

@media (max-width: 992px) {
  .tabla-responsive table th,
  .tabla-responsive table td {
    font-size: 14px;
    padding: 10px 6px;
  }
}

@media (max-width: 768px) {
  .tabla-responsive table th,
  .tabla-responsive table td {
    font-size: 12px;
    padding: 8px 4px;
  }
}

@media (max-width: 480px) {
  .tabla-responsive table th,
  .tabla-responsive table td {
    font-size: 11px;
    padding: 6px 3px;
  }
}

/* Pantallas grandes ≥1400px */
@media (min-width: 1400px) {
  .tabla-responsive table th,
  .tabla-responsive table td {
    font-size: 18px;
    padding: 14px 10px;
  }
}

/* Pantallas muy grandes ≥1600px */
@media (min-width: 1600px) {
  .tabla-responsive table th,
  .tabla-responsive table td {
    font-size: 20px;
    padding: 16px 12px;
  }
}

/* Pantallas ultra grandes ≥1920px */
@media (min-width: 1920px) {
  .tabla-responsive table th,
  .tabla-responsive table td {
    font-size: 22px;
    padding: 18px 14px;
  }
}


table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* evita que se aplaste */
}

.table-bordered {
  border: 2px solid black !important;
}

.table-bordered th,
.table-bordered td {
  border: 2px solid black !important;
}


#tablas img {
 max-width: 100%;
  height: auto; 
  display: block; 
  margin: 0 auto; 
} 
/* Espacio bonito cuando se apila */
 @media (max-width: 991px) { 
  #tablas { 
    margin-bottom: 20px; 
  } 
}

#ceo img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Mantener imagen al lado del texto en tabletas grandes */
@media (max-width: 991px) {
  #ceo {
    margin-bottom: 0; /* ya no se apila */
  }
}

/* Apilar solo en teléfonos pequeños ≤768px y hacer la imagen más pequeña */
@media (max-width: 768px) {
  #ceo {
    margin-bottom: 20px; /* espacio entre imagen y texto */
    text-align: center;
  }

#ceo img {
    max-width: 150px; /* ajusta tamaño de la imagen */
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

/* Ultra pequeño ≤480px */
@media (max-width: 480px) {
  #ceo img {
    max-width: 120px; /* imagen más pequeña en móviles chicos */
  }
}

#extra-space {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: stretch; /* todas las columnas misma altura */
}

#espacio{
  padding: 10px;
}

#imagen-monedas img{
  width: 60%;       /* hazla más chica */
  max-width: 200px; /* límite máximo */
  height: auto;     /* mantiene proporción */
}

/* Ultra pequeño ≤480px */
@media (max-width: 480px) {
  #imagen-monedas img{
    max-width: 100px; /* imagen más pequeña en móviles chicos */
  }
}

#ceo .ceo-title{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
}

.moneda-img {
  max-width: 150px; /* Ajusta el tamaño aquí */
}

/* Ultra pequeño ≤480px */
@media (max-width: 480px) {
  .moneda-img {
    max-width: 100px; /* imagen más pequeña en móviles chicos */
  }
}

.image-box {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

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