/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(28, 95%, 60%);
  --first-color-alt: hsl(28, 95%, 56%);
  --beige-color: hsl(40, 45%, 86%);
  --beige-color-light: hsl(40, 45%, 94%);
  --beige-color-alt: hsl(40, 35%, 72%);
  --brown-color: hsl(18, 15%, 24%);
  --title-color: hsl(0, 0%, 6%);
  --text-color: hsl(0, 0%, 40%);
  --white-color: hsl(0, 0%, 98%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 96%);
  --border-color: hsl(0, 0%, 85%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --second-font: "lato", sans-serif;
  --biggest-font-size: 1.875rem;
  --big-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

.dg1 {
  background: linear-gradient(to bottom, #FA3843, #962847);
  color: #ffffff;
}
.dg2 {
  background: linear-gradient(to bottom, #28B7FF, #004497);
  color: #ffffff;
}
.dg3 {
  background: linear-gradient(to bottom, #EDB557, #E06242);
  color: #ffffff;
}
.dg4 {
  background: linear-gradient(to bottom, #CED2E2, #4D4F57);
  color: #ffffff;
}
.color-w {
  color: #ffffff;
}

/*========== Responsive typography ==========*/
@media screen and (width >= 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--title-color);
}

input,
button {
  background: none;
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-bold);
  line-height: 120%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.cont-w {
    width: 60%;
    margin: 0px auto;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 8rem 8rem;
}
.section__title {
  text-align: center;
  font-size: var(--big-font-size);
  margin-bottom: 1.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
button.submenu-toggle{
  font-weight: 600;
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #000000bd, #00000000);
  z-index: var(--z-fixed);
  transition: background-color .4s, box-shadow .4s;
}
div#nav-menu {
    width: 100%;
}
.logo-img {
  width: 235px;
  padding: 10px;
  object-fit: cover;
}
.logo-black {
  display: none;
}
.scroll-header .logo-black {
    display: block !important;
}
.scroll-header .logo-img-blanco {
  display: none;
}
.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pleca-home{
  width: 60%;
}
.nav__logo {
  color: var(--white-color);
  font-family: var(--second-font);
  font-weight: var(--font-bold);
  transition: color .4s;
  display: flex;
  justify-content: center;
  font-size: 2rem;
}

.nav__toggle {
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .4s;
}

nav ul li {
  position: relative;
}
nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  list-style: none;
  padding: 10px;
  margin: 0;
  min-width: 180px;
  border-radius: 23px;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.067);
}
nav ul li ul li {
  padding: 10px;
}
nav ul li a {
  color: #000;
  font-weight: 600;
}
nav ul li ul li a {
  color: #000;
  padding: 5px;
}
nav ul li ul li a:hover {
  color: #ff9100;
}
nav ul li:hover ul {
  display: block;
}

@media (width <= 1150px){
  .nav__menu{
    position: fixed;
    top: 0;
    right: -120%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    width: 300px !important;
    height: 100vh;
    box-shadow: -8px 0 16px hsla(0, 0%, 0%, .15);
    padding: 7rem 0 2rem 2rem;
    z-index: var(--z-fixed);
    transition: right .4s;
  }
  nav ul li ul {
    position: relative;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
  }
  .nav__link {
    color: #000;
  }
  .nav__list {
    gap: 2rem;
  }
  .submenu-toggle {
    color: #000;
  }

}

.nav__list {
  display: flex;
  flex-direction: column;
}

.nav__link {
  font-weight: var(--font-semi-bold);
  transition: color .4s;
  font-size: .9rem;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__button {
    background-color: rgb(255, 255, 255);
    padding: .8rem 1rem;
    border-radius: 2.5rem;
    display: inline-flex;
    transition: background-color .4s;
    font-size: .8rem;
}

.nav__button:hover {
    background-color: var(--first-color-alt);
    color: var(--title-color);
}

.nav__close{
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* Show menu */
.show-menu{
  right: 0;
}

/* Change header styles */
.scroll-header{
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(20px) saturate(2);
    box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
    border-style: solid;
    border-image: linear-gradient(to right, #ffffff00, #ff0000, #0000ff, #ffffff00) 1;
    border-bottom: 3px solid transparent;
    border-top: none;
    border-right: none;
    border-left: none;
}

.scroll-header :is(.nav__logo, .nav__toggle){
  color: var(--title-color-color);
}

/* Active link */
.active-link{
  color: var(--first-color);
}

.active-link.nav__button{
  color: var(--title-color);
}

/*=============== HOME SECTION ===============*/
.home{
  position: relative;
  height: 800px;
  overflow: hidden;
}

.home__bg,
.home__shadow{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home__bg {
  object-fit: cover;
  object-position: center;
}

.home__shadow {
  background: linear-gradient(180deg, hsla(0, 0%, 0%, 0) 20%, hsl(0, 0%, 0%) 100%);
}

.home__container {
  display: flex;
  flex-direction: column;
  margin-top: 30vh;
  place-items: center;
}

.home__data {
  z-index: 10;
  text-align: center;
}

.home__logo {
  width: 120px;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.home__title {
  color: var(--white-color);
  font-size: var(--biggest-font-size);
}

.home__description {
  color: var(--white-color);
}
.home__2da {
  color: #ffffff ;
  font-size: 2rem;
  font-weight: 400;
}
.home-time{
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.fecha-lugar {
  margin: 20px 0px;
}

.home-fecha, .home-lugar {
  font-size: 1.5rem;
}

/*=============== BUTTON ===============*/
.button{
  display: inline-flex;
  background-color: #ffffff;
  backdrop-filter: blur(6px);
  color: #000000;
  font-weight: var(--font-semi-bold);
  padding: .8rem 2rem;
  border-radius: 50px;
  transition: background-color .4s;
  margin: 10px;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.3);
}
.button i{
  padding: 0px 10px 0px 0px;
  font-size: 1.2rem;
}
.button:hover{
  background-color: #ff4a4a;
  color: #ffffff;
}

/* contador de dias*/

.hero{
  padding: 20px 40px;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #7070704a;
  backdrop-filter: blur(6px);
  border-radius: 23px;
   /* border: 1px solid rgb(111, 111, 111);*/
}

.hero h4 {
  font-weight: 400;
  margin-bottom: 20px;
  color: #ffffff;
}

.timebox{
  display: flex;
  gap: 90px;
}

.time{
  text-align: center;
}

.time h2{
  font-size: 3rem;
  font-weight: 100;
  color: #ffffff;
}



/*=============== ABOUT SECTION ===============*/
.about {
  background-color: #fff;
}

.about__container {
  row-gap: 4rem;
  padding-bottom: 2.5rem;
}

.about .section__title {
  color: #000;
}

.about__description {
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
}

.about__info {
  display: none;
  justify-content: center;
  column-gap: 4.5rem;
}

.about__number {
  color: var(--first-color);
  font: var(--font-bold) var(--h1-font-size) var(--second-font);
  margin-bottom: .5rem;
}

.encuentro {
  background-color: #f4f7f8;
}

.encuentro__number {
  color: #ffffff;
  margin-bottom: .5rem;
}

.about__subtitle{
  font-size: var(--small-font-size);
  color: #000;
}

.about__img{
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  justify-self: center;
}

/* beneficios */
.ben__container{
  display: flex;
}
.ben_img {
  width: 50%;
  border-radius: 23px;
}
.ben_img img {
  width: 100%;
  border-radius: 23px;
  height: 485px;
  object-fit: cover;
}
.ben-data{
  width: 50%;
}
.ben-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.ben-content {
  display: flex;
  width: 100%;
}
.ben-content div {
  width: 50%;
}
.ben-content {
    display: flex;
    width: 100%;
    height: 400px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: space-between;
}
.ben-content div {
    width: 46%;
    height: 46%;
    border-radius: 23px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: space-between;
}
.ben-content div h4 {
  font-size: 1.3rem;
}
.ben-content img {
  width: 70px;
  position: relative;
  left: 70%;
}
.ben-col-b1 {
  background-color: #F8F8F8;
}
.ben-col-b2 {
  background: linear-gradient(to bottom, #28B7FF, #004497);
  color: #fff;
}
.ben-col-b3 {
  background: linear-gradient(to bottom, #FA3843, #962847);
  color: #fff;
}
.ben-col-b2 h4, .ben-col-b3 h4 {
  color: #fff;
}
.ben-col-b4 {
  background-color: #F8F8F8;
}
/*=============== WORKS SECTION ===============*/
.work{
    background-color: hsl(198.95deg 16.13% 91.29%);
}

.work__container{
    row-gap: 4rem;
}

.acti{
  position: absolute;
  background: linear-gradient(to bottom, #00000000, #00000000, rgba(229, 234, 236, 0.83), rgb(229, 234, 236));
  width: 30%;
  height: 408px;
  border-radius: 24px 24px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
}

.acti h3{
  color: #000;
  font-size: 1.5rem;
}

.work__description{
    text-align: center;
}

.work__card{
    width: 30%;
}
.work__img{
    width: 100%;
}
.work__img, .work__card{
    height: 407px;
    border-radius: 1.5rem;
    object-fit: cover;
}


/* Swiper class */

.work__data{
  padding-bottom: 7rem;;
}

.work .swiper-pagination-fraction{
  font-weight: var(--font-semi-bold);
  bottom: 3rem;
}

.work .swiper-navigation-icon {
  display: none;
}

.work :is(.swiper-button-prev, .swiper-button-next){
  top: initial;
  left: initial;
  bottom: .5rem;
  width: initial;
  height: initial;
  margin: initial;
  color: var(--title-color);
  font-size: 1.5rem;
}

.work .swiper-button-prev{
  left: calc(50% - 3rem);
}

.work .swiper-button-next{
  right: calc(50% - 3rem);
}

/*=============== Encuentro SECTION ===============*/
.encuentro__cont {
    display: flex;
    justify-content: space-between;
}

.encuentro__card {
    width: 23%;
    height: 400px;
    border-radius: 23px;
    overflow: hidden;
}
.title-enc {
  margin-bottom: 0rem;
}

.title_ap {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.acti-title {
    position: absolute;
    width: 23%;
    height: 400px;
    background: linear-gradient(to bottom, #00000000, #00132a);
    border-radius: 23px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
}
.encuentro__descripcion{
  text-align: center;
  margin-bottom: 40px;
}
.encuentro__data {
    display: flex;
    flex-direction: column;
}
.enc__subtitle {
    color: #fff;
    font-size: 1.3rem;
}

.en__img {
    height: 100%;
    object-fit: cover;
}
.content-title-assets {
  margin-top: 60px;
}
.service__card {
  display: flex;
  justify-content: space-between;
}

.service__testimonial {
    width: 23%;
    height: 150px;
    border-radius: 23px;
    padding: 0px 20px;
}

.icono__server {
  display: flex;
  justify-content: center;
  backdrop-filter: blur(20px) saturate(1.8);
  position: relative;
  bottom: 20px;
  left: 66%;
  background-color: #ffffffe2;
  border-radius: 50%;
  padding: 10px;
  width: 70px;
  height: 70px;
}

.icono__server::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #ff0000, #0000ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.icono__server i {
  font-size: 2rem;
}
.icono__server img {
    width: 40px;
}

/*=============== SERVICES SECTION ===============*/
section#service {
  background: linear-gradient(45deg, #ffcb82, #6ec7ff);
  background-image: url("../img/fondo-tela.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.tabs {
  display: flex;
  height: 70px;
  box-shadow: 0px 39px 20px -31px rgb(0 0 0 / 39%);
}
.tab-one{
  border-radius: 23px 0px 0px 0px;
}
.tab-two {
  border-radius: 0px 23px 0px 0px;
}
.tab-three {
  border-radius: 0px 23px 0px 0px;
}
.tab {
  background-color: #ffffff;
  flex: 1;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
}

.tab:hover {
  background: #ffffff;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, #ffffff00, #ffffff00, #ff0000, #0000ff, #ffffff00, #ffffff00) 1;
}

.tab.active {
  background-color: #ffffff;
  color: #000000;
  border-bottom: 4px solid transparent;
  font-weight: bold;
  border-image: linear-gradient(to right, #ffffff00, #ffffff00, #ff0000, #0000ff, #ffffff00, #ffffff00) 1;

}

.tab-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  padding: 20px;
  background: rgba(255, 255, 255, 0.636);
  border: 1px solid #fff;
  border-radius: 0px 0px 23px 23px;
  backdrop-filter: blur(6);
  transition: opacity 1s ease;
  transform: scale(0);
  width: 100%;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
  transform: scale(1);
}

/* extranjeros */
a.link_business {
  align-content: center;
}

.content-business-img {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px 20px;
}

.exhibitor-card {
  width: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.exhibitor-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  line-height: 1.1;
}

.exhibitor-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: #000000;
  text-align: center;
}

article.business__img {
    width: 185px;
    height: 185px;
    overflow: hidden;
    justify-content: center;
    display: flex;
    background-color: #ffffff;
    border-radius: 23px;
}
article.business__img img {
    object-fit: contain;
    padding: 26px;
}

.seminarios {
  background: url("../img/speakers/fondo-abstracto.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.publi-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.publi-description{
  text-align: center;
}
.data-publi {
  position: absolute;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 50%;
}
.publi-content {
  width: 100%;
}
.publi1, .publi2 {
  width: 620px;
  height: 450px;
  border-radius: 23px;
}
.publi1 {
  background-color: red;
}
.publi2 {
  background-color: rgb(0, 140, 255);
}
img.publi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 23px;
}
.data-publi h3 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0px 4px 13px #00000080;
}

.card-aliados {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 220px));
  justify-content: center;
  gap: 24px;
}

.card {
  position: relative;
  width: 220px;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  padding: 30px;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

/* Mostrar al pasar el cursor */
.card:hover .overlay {
  opacity: 1;
}

/* Mostrar al hacer clic (usando clase activa) */
.card.active .overlay {
  opacity: 1;
}


/*=============== EXPERTS SECTION ===============*/
.ally__img {
  width: 100%;
}

.ally-description {
  margin-bottom: 60px;
}

/*  speackers  */
.expo {
  background-image: url("../img/speakers/fondo-abstracto.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.expo-container {
  display: flex;
  justify-content:space-between;
}
.ally-content .ex_title {
  color: #fff;
}
.ally-content .ex_descrip {
  color: #000;
  text-align: center;
}
.speakers_card {
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: end;
  width: 320px;
  height: 470px;
  border-radius: 23px;
  overflow: hidden;
  backdrop-filter: blur(6px) saturate(1.8);
}

.speakers_info {
  position: absolute;
  width: 320px;
  height: 300px;
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0.88), rgba(0, 0, 0, 0));
  color: #000000;
  border-radius: 0px 0px 23px 23px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-items: end;
  justify-content: flex-end;
}

.speakers_info h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #000000;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.5);
}

.speakers-img {
  height: 100%;
  object-fit: cover;
}

.spea_tema {
  margin-top: 1.4rem;
}

.social-media {
  width: 100%;
  margin-top: 2rem;
  background: rgb(255, 255, 255);
  box-shadow: 0px -18px 12px -17px rgb(0 0 0 / 17%);
}

.social-media {
  width: 100%;
  margin-top: 2rem;
  background: rgb(255, 255, 255);
  box-shadow: 0px -18px 12px -17px rgb(0 0 0 / 17%);
}

.social-media ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.social-media ul li a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-media ul li a:hover {
  background: #e3e3e3;
  color: #000;
}

.social-media ul li i {
  font-size: 1.2rem;
}

/* Swiper class */
.work__swiper{
  display: flex;
  justify-content: space-between;
  border-radius: 1.5rem;
}

.expo__data{
  padding-bottom: 7rem;;
}

.expo .swiper-pagination-fraction{
  font-weight: var(--font-semi-bold);
  bottom: 3rem;
}

.expo .swiper-navigation-icon {
  display: none;
}

.expo :is(.swiper-button-prev, .swiper-button-next){
  top: initial;
  left: initial;
  bottom: .5rem;
  width: initial;
  height: initial;
  margin: initial;
  color: var(--title-color);
  font-size: 1.5rem;
}

.expo .swiper-button-prev{
  left: calc(50% - 3rem);
}

.expo .swiper-button-next{
  right: calc(50% - 3rem);
}

.pagina, .pagina-i i {
  color: #fff;
}

/* asi vive */
.vive_b {
  height: 700px;
  position: relative;
  background-image: url("../img/General/asi-se-vive.jpg");
  overflow: hidden;
  display: flex;
}
.agen_description{
  text-align: center;
}
.vive {
  position: relative;
  display: flex;
  z-index: 5;
  align-items: center;
  
}
.f_vive {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.661);
}

.vive_data {
  width: 40%;
}
.vive_data h3 {
  font-size: 3rem;
  color: #ffffff;
  padding-bottom: 1.5rem;
}
.vive_data p {
  font-size: 1.1rem;
  color: #ffffff;
}
.vive_video iframe{
  width: 650px;
  height: 365px;
  border-radius: 23px;
}

/* agenda */
.agen__card {
  background-color: rgb(255, 255, 255);
  border-radius: 23px;
  border: 1px solid #e5e5e5;
}
.agen__data {
  display: flex;
  height: 80px;
  margin: 0px 0px 20px 0px;
}
.agen__data:hover {
  background-color: #f6fafc;
}
.color_b1 {
  background: #ffffff;
}
.color_b2 {
  background: #f6fafc;
}
.col_c {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.agen-hora {
    width: 20%;
    border-right: 3px solid #0080ff;
}
.agen__hora {
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
  font-weight: 700;
}
.agen-descrip {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 0px 0px 20px;
}

.agen-descri-bold{
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 0px 0px 0px;
  font-weight: bold;
}

.agen-descrip h5 {
  font-size: 1.2rem;
  padding-bottom: 10px;
}
.agen-descrip p {
  font-size: 1rem;
}
.tab_agen {
  background-color: #ffffff;
  flex: 1;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
}

.tab_agen:hover {
  background: #ffffff;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, #ffffff00, #ffffff00, #ff0000, #0000ff, #ffffff00, #ffffff00) 1;
}

.tab_agen.active {
  background-color: #ffffff;
  color: #000000;
  border-bottom: 4px solid transparent;
  font-weight: bold;
  border-image: linear-gradient(to right, #ffffff00, #ffffff00, #ff0000, #0000ff, #ffffff00, #ffffff00) 1;

}

.tab-content_agen {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  padding: 20px;
  background: rgba(255, 255, 255, 0.636);
  border: 1px solid #fff;
  border-radius: 0px 0px 23px 23px;
  backdrop-filter: blur(6);
  transition: opacity 1s ease;
  transform: scale(0);
  width: 100%;
}

.tab-content_agen.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
  transform: scale(1);
}

/* =============== CONTACT SECTION =============== */
.contact {
  background-color: #e1e4e9;
}
.contact_inf {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
.contact_inf div {
  margin-bottom: 20px;
}
.col-5 {
  width: 50%;
}
.contact_info h3 {
  font-size: 3rem;
}
.contact_data {
  display: flex;
}
.contact_info h4 {
  font-size: 1.3rem;
}
.copy p{
  text-align: center;
  padding-bottom: 10px;
}
.contact_map iframe {
    border-radius: 23px;
}

/* =============== FOOTER =============== */
.footer {
  border-image: linear-gradient(to right, #ffffff00, #ff0000, #0000ff, #ffffff00) 1;
  border-top: 3px solid transparent;
}
.section__footer {
  padding-bottom: 4rem;
}
.footer a {
  color: #000;
}
.content_one {
  display: flex;
  justify-content: center;
}
.logo-footer {
  width: 230px;
  margin-right: 20px;
}
.gigante {
  width: 100px;
}
.section__footer {
  display: flex;
  justify-content: space-between;
}
.content_two {
  text-align: center;
  margin-top: 1rem;
}
.content_two h2{
  margin-bottom: 2rem;
}
.content_two ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content_two ul li i{
  font-size: 1.5rem;
  color: #000;
}
.content_three {
  text-align: center;
  margin-top: 2rem;
}
.copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.copy-aviso {
  padding: 10px;
  cursor: pointer;
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: .4rem;
    background-color: #f5f5f5;
    backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
    background-color: #8d8d8d;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #575757;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, .15);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/

/* For small devices <> */
@media (width <= 539px){
  .cont-w {
    width: 90%;
  }
  .home__container {
    margin-top: 18vh;
  }
  nav ul li ul {
    position: relative;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    list-style: none;
    padding: 10px;
    margin: 0;
    min-width: 180px;
    border-radius: 23px;
    box-shadow: none;
  }
  .logo-img {
    width: 200px;
  }
  .home__container,
  .about__container{
  grid-template-columns: 90%;
  justify-content: center;
  }
  .hero {
    width: 90vw;
  }
  .timebox {
    gap: 35px;
  }
  .work__container {
    width: 92%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .work__swiper{
    display: flex;
    justify-content: space-between;
    border-radius: 1.5rem;
    flex-wrap: wrap;
    gap: 40px 15px;
  }
  .work__data{
    width: 400px;
    padding-bottom: 0rem;
  }
  .work__card{
    width: 47%;
  }
  .acti {
    width: 48%;
    padding: 15px;
  }
  .publi-section {
    width: 93%;
  }
  .card-aliados {
    justify-content: space-between;
    grid-template-columns: 48% 48%;
    gap: 15px;
  }
  .card {
    width: 100%;
  }
  .encuentro__container {
    display: flex;
    flex-direction: column;
  }
  .encuentro__cont {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }
  .encuentro__card {
    width: 47%;
    height: 300px;
  }
  .acti-title {
    width: 47%;
    height: 300px;
  }
  .ben-content {
    gap: 25px 0px;
  }
  .ben-content div {
    width: 48%;
    height: 60%;
    padding: 15px;
  }
  .ben-content img {
    left: 56%;
  }
  .service__card {
    flex-wrap: wrap;
  }
  .service__testimonial {
    width: 48%;
    margin: 0px 0px 40px 0px;
  }
  article.business__img {
    width: 46%;
    height: 160px;
    margin-bottom: 10px;
    display: block;
    align-content: center;
  }
  .ben_img {
    display: none;
  }
  .ben-data {
    width: 100%;
  }
  .ben-title {
    text-align: center;
  }
  .ally-description {
    text-align: center;
  }
  .vive_b {
    height: 780px;
  }
  .vive {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .vive_data {
    width: 100%;
    text-align: center;
  }
  .vive_video {
    width: 100%;
  }
  .vive_video iframe {
    width: 100%;
    height: 365px;
  }
  .tab-content_agen {
    padding: 0px;
  }
  .agen__data {
    height: auto;
    padding: 20px;
  }
  .contact_data {
    flex-wrap: wrap;
  }
  .col-5 {
    width: 100%;
    text-align: center;
  }
  .section__footer {
    flex-wrap: wrap;
    justify-content: center;
  }
  .copy {
    margin-top: 2rem;
  }
  .modal-content {
    width: 90% !important;
    height: 90vh !important;
  }
}

/* For medium devices <> */
@media (width >= 540px){
  .home__container,
  .about__container{
  grid-template-columns: 50% 50%;
  justify-content: center;
  align-items: center;
  }
  .work__data{
    width: 400px;
    margin-inline: auto;
    padding-bottom: 0rem;
  }
  .container{
    margin-inline: auto;
    max-width: 85%;
  }
  .vive_video iframe {
    width: 100%;
    height: 365px;
  }
  .publi1, .publi2 {
    width: 48%;
    height: 450px;
    border-radius: 23px;
  }
  .data-publi {
    height: 450px;
  }  
}

@media (width <= 720px){
  .encuentro__container {
    display: flex;
    flex-direction: column;
  }
  .encuentro__cont {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }
  .encuentro__card {
    width: 47%;
    height: 300px;
  }
  .acti-title {
    width: 47%;
    height: 300px;
  }
  .ben__container {
    flex-wrap: wrap;
    gap: 80px 0px;
  }
  .ben_img {
    width: 100%;
  }
  .ben-data {
    width: 100%;
  }
  .work__swiper {
    flex-wrap: wrap;
    gap: 30px 10px;
  }
   .work__card {
    width: 48%;
  }
  .work__img {
    width: 100%;
  }
  .acti {
    width: 48%;
    padding: 10px 10px 20px 10px;
  }
   .publi1, .publi2 {
    width: 100%;
    height: 450px;
    border-radius: 23px;
  }
  .data-publi {
    height: 450px;
  } 

}

@media (width <= 1000px){
  .acti {
    padding: 10px 10px 20px 10px;
  }
}

/* For large devices <> */
@media (width >= 1150px){
  nav ul li a {
    color: #ffffff;
  }
  .container{
    margin-inline: auto;
    max-width: 80%;
  }
  .section{
    padding-block: 8rem 8rem;
  }
  .nav {
    height: calc(var(--header-height) + 1rem);
    width: 90%;
    max-width: 90%;
    grid-template-columns: 20% 80%;
    display: grid;
  }
  .nav__toggle, .nav__close {  
    display: none;
  }
  .nav__list {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav__button {
    color: var(--title-color);
  }
  .vive_video iframe {
    width: 650px;
    height: 365px;
  }
  /* Active link */
  .active-link{
    color: var(--first-color);
  }
/* cargar header stilos */
  .scroll-header .nav__link, .scroll-header .active-link.nav__button{
    color: rgb(0, 0, 0);
  }
  .scroll-header .submenu-toggle, .scroll-header .active-link.nav__button{
    color: rgb(0, 0, 0);
  }
  .scroll-header .active-link, .scroll-header .active-link:hover{
    color: var(--first-color);
  }
  .scroll-header .nav__button:hover{
    color: #ffffff;
  }
  .home{
    height: 870px;
  }
  .home__container{
    grid-template-columns: 665px;
  }
  .home__logo{
    width: 150px;
  }
  .about__container{
    grid-template-columns: 45% 45%;
    align-items: center;
    column-gap: 8rem;
    padding-block: 3rem;
  }
  .about__img{
    width: 100%;
    height: 430px;
    order: -1;
    object-fit: cover;
  }
  .about__data .section__title {
    text-align: initial;
  }

  .about__description {
    margin-bottom: 4rem;
    text-align: initial;
  }
  .about__info {
    justify-content: initial;
  }
  .about__number {
    font-size: var(--big-font-size);
    margin-bottom: 1rem;
  }
  .about__subtitle {
    font-size: var(--h3-font-size);
  }
  .work__container{
    grid-template-columns: 23% 74%;
    column-gap: 2rem;
  }
  .work__data{
    width: initial;
    padding-bottom: 12rem;
  }
  .work__data .section__title,
  .work__description,
  .work .swiper-pagination{
      text-align: initial;
  }
  .work .swiper-button-prev{
      left: 0;
  }
  .work .swiper-button-next{
      left: 4.5rem;
      right: initial;
  }
  .work__card{
    width: 30%;
  }
  .work__img{
    width: 100%;
  }
  .acti {
    width: 30%;
  }
  .publi1, .publi2 {
    width: 48%;
    height: 450px;
    border-radius: 23px;
  }
  .data-publi {
    height: 450px;
  }

}


/* modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px) saturate(1.8);
}
.modal-header {
    display: flex;
    justify-content: end;
    padding: 0px 20px;
}
.modal-content {
  background: #fff;
  padding: 0px 0px 20px 0px;
  border-radius: 26px;
  width: 70%;
  max-width: 90%;
  height: 75vh;
  animation: fadeIn 0.4s ease;
  margin: 5% auto;
}
.close {
  font-size: 36px;
  cursor: pointer;
}
#contenidoModal {
  height: 94%;
  overflow: auto;
  padding: 0px 30px;
}
#contenidoModal h3 {
  padding: 20px 0px;
  text-align: center;
}
#contenidoModal h5 {
  padding: 20px 0px;
}


@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* buyer companies modal */
a.link_business{
  cursor: pointer;
}

article.business__img{
  transition: transform .2s ease, box-shadow .2s ease;
}

article.business__img:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

body.buyer-modal-open{
  overflow: hidden;
}

.buyer-modal{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.buyer-modal.is-open{
  display: flex;
}

.buyer-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(10px) saturate(1.2);
}

.buyer-modal__dialog{
  position: relative;
  width: min(920px, 92vw);
  max-height: 88vh;
  overflow: hidden;
  border-radius: 30px;
  background: #f8f9fc;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
  animation: fadeIn .25s ease;
}

.buyer-modal__close{
  position: absolute;
  top: 18px;
  right: 18px;
  height: 54px;
  width: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.28);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease, transform .2s ease;
}

.buyer-modal__close:hover{
  background: rgba(0,0,0,.42);
  transform: scale(1.03);
}

.buyer-modal__close i{
  font-size: 24px;
}

.buyer-modal__banner{
  width: 100%;
  aspect-ratio: 4 / 1;
  background: linear-gradient(120deg, #5874b3, #b8bfcc);
  overflow: hidden;
  position: relative;
}

.buyer-modal__banner.is-empty{
  background: linear-gradient(120deg, #5b75b0, #c6ccd7);
}

.buyer-modal__banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.buyer-modal__banner.is-empty .buyer-modal__banner-img{
  display: none;
}

.buyer-modal__content{
  padding: 60px 36px 32px;
  overflow: auto;
  max-height: calc(88vh - 120px);
}

.buyer-modal__header{
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-top: -36px;
  margin-bottom: 18px;
}

.buyer-modal__logo-wrap{
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.buyer-modal__logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.buyer-modal__title-wrap{
  flex: 1;
  min-width: 0;
  padding-bottom: 10px;
}

.buyer-modal__title{
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
  color: #0f172a;
  text-transform: uppercase;
}

.buyer-modal__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.buyer-modal__tag{
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(88,116,179,.10);
  color: #4e6eaf;
  border: 1px solid rgba(88,116,179,.18);
  white-space: nowrap;
}

.buyer-modal__bio{
  margin: 22px 0 0;
  color: #495367;
  font-size: 1rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.buyer-modal__social{
  margin-top: 26px;
}

.buyer-modal__social-row{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.buyer-modal__social-link{
  height: 56px;
  width: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f1f2f6;
  border: 1px solid rgba(0,0,0,.06);
  color: #111827;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.buyer-modal__social-link:hover{
  transform: translateY(-2px);
  background: #e8eefb;
  border-color: rgba(88,116,179,.25);
}

.buyer-modal__social-link i{
  font-size: 28px;
}

@media (max-width: 700px){
  .buyer-modal{
    padding: 14px;
  }

  .buyer-modal__dialog{
    width: 100%;
    max-height: 92vh;
    border-radius: 24px;
  }

 @media (max-width: 700px){
  .buyer-modal__banner{
    aspect-ratio: 3 / 1;
  }
}

  .buyer-modal__content{
    padding: 50px 18px 22px;
    max-height: calc(92vh - 96px);
  }

  .buyer-modal__header{
    gap: 14px;
    align-items: center;
    margin-top: -28px;
    margin-bottom: 16px;
  }

  .buyer-modal__logo-wrap{
    width: 86px;
    height: 86px;
    border-radius: 20px;
  }

  .buyer-modal__title-wrap{
    padding-bottom: 0;
  }

  .buyer-modal__title{
    font-size: 1.2rem;
    text-transform: uppercase;
  }

  .buyer-modal__tag{
    font-size: .68rem;
    padding: 6px 10px;
  }

  .buyer-modal__bio{
    font-size: .92rem;
    line-height: 1.55;
    text-transform: none;
  }

  .buyer-modal__social-link{
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .buyer-modal__social-link i{
    font-size: 22px;
  }

  .buyer-modal__close{
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .buyer-modal__close i{
    font-size: 20px;
  }
}


        /* Estado inicial */
.animado {
  opacity: 0;
  transform: translateY(50px);
}

/* Animación al entrar */
.animado.visible {
  animation: slideUp 1s ease forwards;
}

/* Definición de animación */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 🔹 Desvanecer (fade in) */
.fadeIn.visible {
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 🔹 Deslizamiento desde abajo */
.slideUp.visible {
  animation: slideUp 1s ease forwards;
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* 🔹 Deslizamiento desde la izquierda */
.slideLeft.visible {
  animation: slideLeft 1s ease forwards;
}
@keyframes slideLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* 🔹 Deslizamiento desde la derecha */
.slideRight.visible {
  animation: slideRight 1s ease forwards;
}
@keyframes slideRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* 🔹 Zoom */
.zoomIn.visible {
  animation: zoomIn 1s ease forwards;
}
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 🔹 Rotación */
.rotateIn.visible {
  animation: rotateIn 1s ease forwards;
}
@keyframes rotateIn {
  from { transform: rotate(-90deg); opacity: 0; }
  to { transform: rotate(0); opacity: 1; }
}

/* 🔹 Rebote */
.bounceIn.visible {
  animation: bounceIn 1s ease forwards;
}
@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
