/* Estilos generales */
:root {
    --primary-color: #2d3748;
    --secondary-color: #00877C;
    --red: #A32911;
    --font-size: 16px;
    --title-color: #2d3748;
    --caption-color: #4a5568;
    --text-color: #4a5568;
    --font-family:'Geist', sans-serif;
    --primary-hover: #0f172a;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --hero-transition-time: 0.8s;
    --section-spacing: 100px;
    --line-color: #e1e1e1;
    --pink: #FE1D46;
  }
/* Reset básico */
.main-page{
    max-width: 1350px;
    padding: 0 4rem;
}
/* Titles */
.main-page h1 {
    color: var(--title-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.main-page h2 {
    color: var(--title-color);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.main-page h3 {
    color: var(--title-color);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.main-page h4 {
    color: var(--title-color);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Text elements */
.main-page p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.main-page a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.main-page a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.main-page strong {
    color: var(--title-color);
    font-weight: 600;
}

.main-page em {
    font-style: italic;
}

/* Captions and small text */
.main-page figcaption,
.main-page .caption {
    color: var(--caption-color);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Lists */
.main-page ul,
.main-page ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-color);
}

.main-page li {
    margin-bottom: 0.5rem;
}

/* Blockquotes */
.main-page blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--caption-color);
    font-style: italic;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
.tour-search-form {
    display: flex;
    margin-left: 20px;
}

.tour-search-form input[type="text"] {
    padding: 8px 12px;
    border-radius: 20px 0 0 20px;
    background-color: #e9ecef;
    border: none;
}
.tour-search-form input[type="text"]:focus{
outline: none;
box-shadow: none;   
}

.tour-search-form button {
    background: #e9ecef;
    color: #718096;
    border: none;
    border-radius: 0 20px 20px 0;
    padding: 0 15px;
    cursor: pointer;
}
.breadcrumbs{
    font-size: 12px;
    margin-top: 5px;
    font-family: var(--font-family);
  
}
.breadcrumbs a{
    text-decoration: none;
}
html{
    overflow-x: hidden;
}
main{
    scroll-behavior: smooth;
}
a,span,li,strong{
    font-family: var(--font-family);
}
h1,h2,h3,h4,p{
    font-family: var(--font-family);
}
.slider-item span{
    font-family: var(--font-family);
    font-size: 12px;
}
p{
    margin-bottom: 16px;
    font-size: 14px;
}
p.description{
    color: #fff;
    font-family: var(--font-family);
}
figcaption p{
    color: #fff;
}
section.category-header{
    margin-top: 30px;
}
.logo-movile{
    display: none;
}
.header-conatiner{
    position: relative;
   height: 110px; 
   z-index: 1000;

}
/*Top Bar*/
.flags-polylang{
    padding: 0;
    display: flex;
    gap: 15px;
   list-style: none; 
   margin-right: 10px;
}
.flags-polylang.movile{
    display: none;
}
.topbar-white {
    background: white;
    /* padding: 0.5rem 0 ; */
    font-size: 0.9rem;
}
.topbar-white.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1010;
    animation: slideDown 0.3s ease-out;
    border-bottom: 1px solid #e1e1e1;
  }

.topbar-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 35% 30% 35%;
    align-items: center;
    padding: 0 4rem;
}

.contact-info-top {
    display: flex;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    color: var(--title-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
}

.contact-icon {
    color: var(--title-color);
    font-size: 0.85rem;
   
}

.contact-item:hover {
    color: var(--title-color);
    transform: translateY(-1px);
}

.contact-item:hover .contact-icon {
    opacity: 1;
}

.social-links-top {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: end;
}

.social-link-top {
    color: var(--title-color);
    background: #e9ecef;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
 
    font-weight: 600;
}
.breadcrumb_last{
    color: var(--caption-color);
}
.breadcrumbs a{
    color: var(--text-color);
    font-weight: 500;
}
.social-link:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
   
    border-color: rgba(0,0,0,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-item img{

object-fit: contain;
}



/* Estilos base del navbar (sin cambios) */
header.header{
    top: 0;
    z-index: 1000;
    width: 100%;
   position: relative;
    height: 100px;
}
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e1e1e1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
}
.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
  }
  .navbar.visible {
    transform: translateY(0);
    opacity: 1;
    position: fixed;
    top: 56px;
    padding-top: 10px;
  }
  
  
  @keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }
.navbar-container {
    max-width: 1350px;
    padding: 0 64px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.menu-toggle {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 23px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.main-navigation {
    display: flex;
    align-items: center;
    width: 100%;
}

.main-menu {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: space-between;
    max-width: 1350px;
}

.menu-item {
    display: flex;
}
.menu-item .mobile-submenu-toggle{
    background: transparent;
    border: 0px;
    margin-left: 10px;
}

.menu-item > a {
    text-decoration: none;
    color: var(--title-color);
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.menu-item > a:hover {
    color: var(--caption-color);
}
.menu-item button i{
transition: transform 0.5s ease;
}
.menu-item:hover button i{
    transform: rotate(180deg);
}
.navbar.visible .megamenu-submenu{
top: 50px;
}
.megamenu-submenu {
    position: absolute;
    left: 0;
    top: 100px;
    width: 100vw;
    background-color: #fff;
    box-shadow: 0px 20px 20px 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 20px;
    
}

.menu-item:hover .megamenu-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-grid {
    display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.megamenu-description {
    /* width: 100%; */
    
    display: flex;
    align-items: center;
}

.megamenu-items {
   
display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.submenu-item a {
    text-decoration: none;
    color: var(--title-color);
    display: block;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.submenu-item a:hover {
    transform: translateX(5px);
    
}

.submenu-item img {
  
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
   
}

.item-content h4 {
    margin-bottom: 5px;
    font-size: 16px;
}
/*Fin navbar*/

/*HERO SECTION HOME*/
.hero-slider {
    position: relative;
    width: 100%;
    height: 82vh;
    overflow: hidden;
    padding: 0 20px ;
    transition: filter 0.4s ease-out;
    /* filter: brightness(0.8); */
}
/* Opcional: Añadir un overlay para mayor efecto de oscurecimiento */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    mix-blend-mode: multiply;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease-out;
  }
  
  .hero-slider.darkened::after {
    opacity: 0.7; /* Ajusta este valor para controlar la intensidad del oscurecimiento */
  }

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--hero-transition-time) ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    pointer-events: none;
    border-radius: 20px;
    /* filter: brightness(0.8); */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    
}

/* Overlay decorativo */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000a4 0%, transparent 100%);
    z-index: 0;
    border-radius: 20px;
}

/* Contenido del slide */
.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0px;
    /* background-color: rgba(0, 0, 0, 0.13); */
    border-radius: 15px;

    /* border: 1px solid rgba(255, 255, 255, 0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--hero-transition-time) ease-out;
}

.hero-slide.active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

/* Elemento decorativo de línea */
.hero-title-line {
    color: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-title-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 1s ease-out;
    transition-delay: 0.5s;
}

.hero-slide.active .hero-title-line::after {
    width: 100%;
}

/* Textos */
.hero-slide h1,.hero-slide h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--hero-light-color);
    line-height: 1.2;
}

.hero-subtitles-container {
    margin-bottom: 30px;
}

.hero-subtitle {
    font-family: var(--font-family);
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    margin-bottom: 15px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease-out;
}

.hero-slide.active .hero-subtitle {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.active .hero-subtitle:nth-child(1) {
    transition-delay: 0.6s;
}

.hero-slide.active .hero-subtitle:nth-child(2) {
    transition-delay: 0.8s;
}

.hero-slide.active .hero-subtitle:nth-child(3) {
    transition-delay: 1s;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--hero-accent-color);
    border-radius: 50%;
}

/* Botones */
.hero-btn-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-btn-primary {
    transition-delay: 1.2s;
    color: var(--primary-color);
}

.hero-slide.active .hero-btn-secondary {
    transition-delay: 1.4s;
}

.hero-btn-primary {
    background-color: #fff;
    color: white;
    border: 2px solid #fff;
}

.hero-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    background-color: transparent;
    color: var(--hero-accent-color);
}

.hero-btn-secondary:hover {
    background-color: white;
    color: var(--hero-dark-color);
}

/* Navegación */
.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hero-slider-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

.hero-slider-dot.active::after {
    opacity: 1;
}

/* Flechas de navegación */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.hero-slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow-prev {
    left: 30px;
}

.hero-slider-arrow-next {
    right: 30px;
}

.hero-slider-arrow i {
    color: white;
    font-size: 24px;
}

/* Indicador de scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-family);
}

.hero-scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, white, transparent);
    margin-top: 10px;
}





/*About section*/
.visually-hidden{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0;
    font-size: 24px;
    color: var(--primary-color);
}
.about-section{
    z-index: 1;
    position: relative;
    padding: 0 20px;
}

.title-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
  }
  
  .expanding-lines-title {
    color: var(--primary-color);
    position: relative;
    font-size: 2rem;
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  /* Horizontal lines */
  .expanding-lines-title::before,
  .expanding-lines-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 1px;
    background-color: #e1e1e1;
    transition: width 1s ease;
  }
  
  .expanding-lines-title::before {
    left: 0;
    transform: translateX(-100%);
  }
  .expanding-lines-title::after {
    right: 0;
    transform: translateX(100%);
  }
  
  /* Vertical line above */
  .vertical-line {
    position: absolute;
    top: 0;
    height: 0;
    width: 1px;
    background-color: #e1e1e1;
    transition: height 1s ease;
  }
  
  /* When visible */
  .title-visible .expanding-lines-title {
    opacity: 1;
    transform: translateY(0);
  }
  .title-visible .expanding-lines-title::before,
  .title-visible .expanding-lines-title::after {
    width: 100px;
  }
  .title-visible .vertical-line {
    height: 60px;
  }





h2.section-title{
    color:var(--title-color);
    font-size: 24px;
    padding: 0;
}
.section-p{
 font-size: 14px;
 color: var(--text-color);
}
p.parrafo-about{
    max-width: 50%;
    color:var(--text-color);
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
}

.cta-section-home{
    max-width: 1350px;
    padding: 0rem 4rem;
    margin: 0 auto;
}
.cta-section-home .fixed-contact-section{
    padding: 6rem 3rem;
}

/*Destinos*/
.continents-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 20px auto;
    /* flex-wrap: wrap; */
    max-width: 1350px;
    padding: 0 4rem;
  }
  
  .continent {
    text-align: center;
    /* font-family: 'Georgia', serif; */
    color: var(--primary-color);
  }
  
  .continent img {
    width: 150px;
    height: auto;
    opacity: 0.5;
  }
  
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
  }
  
  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #d9d9d9;
    margin: 0 10px;
  }
  
  .diamond {
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  .continent p {
    margin-top: 5px;
    color: var(--text-color);
    font-size: 14px;
  }
/*Fin destinos*/
/*cards*/


/*Scroll horizontal*/

.wrapper {
    overflow-x: hidden;
    position: relative;
    max-width: 1350px;
    padding: 0 4rem;
    margin: 0 auto;
}
.step{
    font-weight: 800;
}
.circle-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
}

.circle-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed #00877C;
  border-radius: 50%;
  box-sizing: border-box;
  transition: transform 0.1s linear;
}

.circle-number {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 3em;
  color: #00877C;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-weight: 700;
}
.scrollx svg {
    position: absolute;
    bottom: 5em;
    width: 100%;
    max-width: 1350px;
    padding-right: 8rem;
    .mask {
        width: 0;
    }
}
.section-title.title-absolute{
    position: absolute;
  top: 110px;
    font-size: 24px;
    color:var(--primary-color);
}
.title-scroll-h{
    margin-top: 20px;
}

.container {
    display: flex;
    
    width: 300vw;

    .col {
        display: flex;
        gap: 3em;
        
        p {
            font-size: .8rem;
        }
        img{
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: var(--border-radius);
        }
        div{
            
            align-content: center;
        }
    }
    

    div.sec1, 
    div.sec2, 
    div.sec3 {
        max-width: 1350px;
        padding: 12vw 4rem;
        /* margin: 0 auto; */
        h2 {
            font-size: 24px;
            margin: 20px 0;
            color: var(--primary-color);
        }

        p {
            font-size: 16px;
            width: 50vw;
            color: var(--text-color);
        }

        ul {
            list-style-type: none;
            display: flex;
            gap: 3em;
            width: 100%;
            height: 300px;
            padding: 0;

            li {
                background: white;
                border-radius: .3em;
                flex-grow: 1;
            }
        }
        

    }

}
/*Scroll horizontal fin*/







/*footer*/
/* Estilos base */
.agency-footer-light {
    background: #ffffff;
    color: #333333;
    padding: 60px 0 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.05);
    border-top: 1px solid #f0f0f0;
  }
  
  .agency-footer-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--line-color);
  }
  
  .footer-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
  }
  
  .footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .logo-main {
    color: var(--primary-color);
  }
  
 
  
  .footer-description {
    margin-bottom: 25px;
    color: var(--text-color);
  }
  
  .footer-title {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background-color: var(--line-color);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding-left: 15px;
    font-size: 14px;
  }
  
  .footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--pink);
    opacity: 0;
    transition: all 0.3s;
  }
  
  .footer-links a:hover {
    color: var(--pink);
    padding-left: 20px;
  }
  
  .footer-links a:hover::before {
    opacity: 1;
    left: 5px;
  }
  
  .footer-contact {
    font-style: normal;
  }
  
  .contact-item-footer {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .contact-icon-footer{
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 18px;
  }
  
  .footer-contact p, .footer-contact a {
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s;
  }
  
  .footer-contact a:hover {
    color: var(--secondary-color);
    text-decoration: none;
  }
  
  .newsletter-form {
    display: flex;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-family: inherit;
    background: #f9f9f9;
  }
  
  .newsletter-form button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .newsletter-form button:hover {
    background-color: var(--secondary-color);
  }
  
  .social-media {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--title-color);
    font-size: 18px;
    transition: all 0.3s;
  }
  
  .social-media a:hover {
    background-color: var(--pink);
    color: white;
    transform: translateY(-3px);
  }
  
  .payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #999999;
  }
  
  .payment-methods i {
    transition: color 0.3s;
  }
  
  .payment-methods i:hover {
    color: var(--pink);
  }
  
  .footer-certifications {
    display: flex;
    justify-content: center;
  }
  
  .footer-certifications img {
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
  }
  
  .footer-certifications img:hover {
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    background-color: #f9f9f9;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #f0f0f0;
  }
  
  .footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #999999;
  }
  
  .footer-legal a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-legal a:hover {
    color: var(--pink);
  }
  
  .footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }
/*Fin footer*/


/* Tours Grid Layout */



/* Grid de Tours */



/* Grid de Tours Fin */
/*Seccion de blog*/

.container-blog-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1350px;
    margin: 0 auto;
    padding: 120px 4rem 0 4rem ;
    gap: 20px;
    
  }
  
  
  .left {
    min-width: 400px;
    position: relative;
  }
  
  .section-title.etiqueta {
   
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    margin-bottom: 20px;
    top: -50px;
    left: 0;
    color: var(--primary-color);
  }
  
  .icono {
    width: 100px;
    height: auto;
    margin: 20px 0;
    position: absolute;
    top: 0;
    z-index: 500;
    border-radius: 8px;
  }
  
  .image-box {
    position: relative;
  }
  
  .image-box img {

    width: 100%;
    display: block;
    border-radius: 8px;
    filter: brightness(0.5);
  }
  
  .destacado {
    writing-mode: vertical-rl;
    position: relative;
    right: 0px;
    top: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  
  .contenido {
    margin-top: 20px;
    align-self: center;
  }
  
  .contenido h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
    color: var(--primary-color);
  }
  
  .contenido p {
    margin-bottom: 20px;
    color: var(--text-color);
  }
  
 .btn-blog {
    padding: 10px 20px;
    background: none;
    border: 1px solid #d9d9d9;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .right {
    max-width: 300px;
    text-align: left;
    align-self: center;
  }
  
  .avatar {
    /* width: 130px;
    height: 130px; */
    /* border-radius: 50%; */
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .right h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .right p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .right a {
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #d9d9d9;
    color: black;
  }
  
  .firma {
    margin-top: 30px;
    width: 120px;
  }
/*Fin Seccion de blog*/
/* Sección de Contacto Fija */
.fixed-contact-section {
  
    color: white;
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.contact-card h3 i {
    margin-right: 0.5rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--title-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-link.email { background: #ffffff; }
.contact-link.phone { background: #2ecc71; }
.contact-link.whatsapp { background: #25D366; }

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.expert-advice {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.expert-advice h4 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 10px;
}
.expert-advice p{
    color:#fff
}
/* SECCIÓN "POR QUÉ ELEGIRNOS" */
.container-about-section h2 {
    color: var(--primary-color);
}


.why-choose {
    text-align: center;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 4rem;
}

.why-choose h2 {
    font-size: 24px;
    font-weight: 700;
   
    position: relative;
    display: inline-block;
}

.why-choose h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: #d9d9d9;
    bottom: -10px;
    left: 25%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00877C;
    
    
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-color);
    font-size: 14px;
}



/*fINNAbout section*/
/*Page about us*/
.container-about-page{
 max-width: 1350px;
 margin: 0 auto;
 padding: 100px 4rem 0 4rem;
}
.about-hero {
    color: var(--white);
    text-align: center;
    padding: 10rem 1rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.about-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}
/**/
.agency-about {
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--cloud-white) 0%, #ffffff 100%);
}

.agency-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

/* Sección de imagen */
.agency-hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
}

.agency-hero-image img {
    filter: brightness(0.7);
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.agency-hero-image:hover img {
    transform: scale(1.05) rotate(1deg);
}

/* Contenido textual */
.agency-info {
    flex: 1 1 45%;
    min-width: 300px;
}

.agency-badge {
    display: inline-block;

    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.agency-title {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 0 1.5rem;
    position: relative;
}

.agency-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: var(--line-color);
   
}

.agency-description {
    font-size: 14px;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

/* Elementos especiales */
.agency-motto {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 1.5rem;
    margin: 2rem 0;
    background-color: #E6F2F1;
    border-radius: 8px;
}












.section {
    margin-bottom: var(--section-spacing);
    position: relative;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

 .section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: var(--line-color);
    bottom: -10px;
    left: 0;
    border-radius: 3px;
} 

.about-section-about {
    background-color: white;
    padding: 80px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    margin-bottom: var(--section-spacing);
}

.timeline {
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
}
.timeline-content{
    p{
        color: var(--text-color);
    }
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.timeline-content .date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -12px;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-img img{
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.5s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: var(--font-family);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-family);
}


/*page contact us*/
.hero-contacto{
color: var(--white);
    text-align: center;
    padding: 10rem 1rem;
}
.container-contact{
    max-width: 1200px;
    margin: 0 auto;
}
.hero-contacto h1{
    color: #fff;
    font-size: 40px;
}
.hero-contacto p{
    color: #fff;
   
}
.contact-page{
    max-width: 1350px;
    margin: 0 auto;
    padding: 80px 4rem 0 4rem;
}
.contact-container {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: var(--section-spacing);
}

.contact-info {
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}



.contact-item-about {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon-about {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-details p, .contact-details a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea
{
    margin-top: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}
.error-404 {
    text-align: center;
    padding: 5rem 2rem;
}
.error-404 h1 {
    font-size: 5rem;
    color: var(--primary-color); /* Red color for error */
}
.error-404 .button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/*Footer logos*/

.logo-grid-container {
  overflow: hidden;
  padding: 20px;
}
.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-title-fo {
  font-size: 24px;
 padding-bottom: 0;
 margin-bottom: 0;
  white-space: nowrap;
  color: var(--primary-color);
  text-wrap: auto;
  text-align: center;
}

.line {
  height: 1px;
  background-color: var(--line-color);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.logo-item img {
  max-width: 100px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
}
.logo-item img:hover{
    filter: none;
}
.vertical-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background-color: var(--line-color);
  height: 0;
}

.vertical-divider.right {
  right: 0;
}

.horizontal-divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: var(--line-color);
  width: 0;
}

.horizontal-divider.bottom {
  bottom: 0;
}



/*Tours*/
.slider-section {
    position: relative;
            margin-bottom: 60px;
            max-width: 1350px;
            margin: 0 auto;
            padding: 60px 4rem 0px;
            background-color: white;
           
        
}

/* .decorative-circle {
            position: absolute;
            bottom: auto;
            left: auto;
            right: 0;
            top: 0;
            height: 500px;
            width: 500px;
            transform: translateX(-30%) translateY(20%);
            border-radius: 50%;
            background-color: rgba(109, 240, 244, 0.5);
            opacity: 0.5;
            filter: blur(80px);
        } */

        .slider-section h2 {
            color: var(--title-color);
         
        }
   
        .slider-container {
            position: relative;
            max-width: 1350px;
            margin: 0 auto;
           
        }
        
        .slider-mask {
            overflow: hidden;
            width: 100%;
        }
        
        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
            padding: 10px 0 20px;
        }
        
        .tour-card {
            flex: 0 0 auto;
            width: calc(25% - 15px);
            margin-right: 20px;
            border-radius: 8px;
            overflow: hidden;
         box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);
            scroll-snap-align: start;
            background: #fff;
           border: 1px solid #acacac14;
        }
        
        .tour-card:last-child {
            margin-right: 0;
        }
        
        .card-image-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.card-rating{
    display: flex;
    align-items: center;
}
.card-rating .stars{
    font-size: 14px;
    margin: 3px 0;
}
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
        
    .card-badge {
    font-family: var(--font-family);
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #00877C;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}
.card-content {
    padding: 15px;
    
}
.card-content a{
    text-decoration: none;
}
.card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--title-color);
    margin-top: 0;
    margin-bottom: 0px;
    padding-bottom: 0PX;
    line-height: 1.3;
}

.card-location {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 11px;
    color: #59636d94;
}

.location-icon {
    color: #59636d94;
    margin-right: 5px;
    font-size: 12px;
}
.d-none-l{
    display: none;
}



.card-description {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 5px;
    list-style: none;
    padding: 0;
    color: var(--text-color);
}
.card-details li{
    font-size: 11px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--title-color);
}

.detail-icon {
    color: var(--title-color);
    margin-right: 5px;
    font-size: 11px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 14px;
    color: var(--title-color);
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-color);
}

/**/
        
    
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--title-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
          
            border: none;
            z-index: 10;
            transition: all 0.3s;
            font-size: 20px;
            color: #fff;
        }
        
        .slider-nav:hover {
            background-color: #000;
        }
        
        .slider-nav:disabled {
            display: none;
        }
        
        .slider-nav.prevt {
            left: -20px;
        }
        
        .slider-nav.nextt {
            right: -20px;
        }

/*Fin Tours*/
/*Boton Flotante*/
.whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        .whatsapp-button .button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-button .button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
        }
        
        .whatsapp-button .button img {
            width: 36px;
            height: 36px;
        }
        
        .whatsapp-button .tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            padding: 10px 15px;
            border-radius: 25px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-family: 'Segoe UI', sans-serif;
            font-weight: 500;
            color: #333;
        }
        
        .whatsapp-button:hover .tooltip {
            opacity: 1;
            right: 80px;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Animación de chat */
        @keyframes chat {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .whatsapp-button .button.chat-animation {
            animation: chat 0.5s ease;
        }
/*Fin Boton Flotante*/
 @media (max-width: 1200px) {
            .tour-card {
                width: calc(33.333% - 13.333px);
            }
        }
        
       
/* Estilos responsive */
@media (max-width: 1024px) {
    
    .contact-info-top .contact-item:last-child{
        display: none;
    }
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-top: 20px;
        padding-left: 70px;
        padding-right: 0px;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px !important;
    }
}
 @media (max-width: 900px) {
            .tour-card {
                width: calc(50% - 10px);
            }
        }
/* Mobile styles */
@media (max-width: 768px) {
    .navbar.visible{
        padding-top: 0;
    }
    
    .slider-section{
        padding: 20px 20px;
    /* background-color: white;
background-image: radial-gradient(
                60% 120% at 50% 50%,
                hsla(0, 0%, 100%, 0) 0%,
                #fe1d461f
            ); */
}
    .hero-slider{
        height: 90vh;
    }
    .navbar.visible{
        top: 0;
    }
    .flags-polylang.movile{
        position: absolute;
        display: flex;
        right: 60px;
    }
    .header-conatiner{
        height: 60px;
    }
    .logo-movile{
        display: block;
    }
    .logo-movile img{
        height: 40px;
    }
    .navbar-container {
        height: 50px;
        padding: 0 20px;
    }

    .topbar-white{
        display: none;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
        z-index: 1001;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 60px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .menu-item {
        margin: 0 0 15px 0;
        width: 100%;
        position: relative;
        flex-direction: column;
    }
    
    .menu-item > a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .megamenu-submenu {
        position: relative;
        opacity: 1;
        top: 0;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        display: block !important;
    }
    
    .megamenu-submenu.open {
        max-height: 1000px;
        padding: 5px 5px 20px;
    }
    
    .menu-item:hover .megamenu-submenu {
        transform: none;
    }
    
    .megamenu-items {
        grid-template-columns: 1fr;
    }
    
    .mobile-submenu-toggle {
        position: absolute;
        right: 0;
        top: 10px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        background: none;
        font-size: 18px;
        z-index: 1;
        
        transition: transform 0.3s ease;
    }
    
    .mobile-submenu-toggle.open  {
        transform: rotate(180deg);
    }
    .megamenu-grid{
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 53%;
    margin: 0px;
    }
   
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .slider .list .item .content{
        padding-right: 0;
    }
    .slider .list .item .content .title{
        font-size: 50px;
    }
    
    /*Categorias*/
    .category-header {
        grid-template-columns: 1fr;
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    .about-section{
        padding: 20px 20px;
    }
    p.parrafo-about{
        margin-top: 20px;
max-width: 100%;
    }
    .slider-container-card{
        padding: 50px 20px 0 20px;
    }
    .founder-section{
        padding: 10px 20px 0 20px;
    }
    .gallery-container{
        padding: 0 20px;
    }
    .about-page {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    .hero-contacto {
        padding: 60px 0;
    }
    
    .hero-contacto h1 {
        font-size: 2rem;
    }
    .hero-title-line{
        margin-bottom: 0;
    }
    
    
    .formulario-wrapper,
    .info-card {
        padding: 20px;
    }
    .about-container{
        padding: 20px;
    }
    .tour-category-detail .container-tours{
        padding: 20px 20px;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    /*Footer*/
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
      }
      
      .newsletter-form {
        flex-direction: column;
        border: none;
      }
      
      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
        border-radius: 4px;
      }
      
      .newsletter-form input {
        border: 1px solid #e0e0e0;
        margin-bottom: 10px;
      }
      
      .newsletter-form button {
        padding: 12px;
      }
      
      .footer-legal {
        flex-direction: column;
        text-align: center;
      }
      .agency-container {
        flex-direction: column;
    }
    .continents-container{
        padding: 0;
       display: grid;
       grid-template-columns: repeat(2,1fr);
       gap:10px;
    }
    .continents-container .continent:last-child{
          grid-column: span 2;
    }
    .section-title.title-absolute{
        position: absolute;
        top: 10px;
        text-wrap: auto;
    }
    .logo-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .logo-grid-container{
        padding: 0;
    }
    .container-blog-section{
        padding: 80px 20px 0 ;
        flex-wrap: wrap;
    }
    .left {
        min-width: 200px;
    }
    .why-choose{
        padding: 0 20px;
    }
    .cta-section-home{
        padding: 0 20px;
    }
    .cta-section-home .fixed-contact-section{
        padding: 20px 10px;
        margin: 0 0 20px;
    }
    .wrapper{
        padding: 0 20px;
    }
    .container div.sec1,
     .container div.sec2,
     .container div.sec3{
padding: 50px 20px 20px;
    }
    .container div.sec3{
        padding-right: 60px;
    }
    .container{
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    .container .col{
        flex-direction: column;
        gap: 5px;
        padding:0;
    }
    .container .col img{
        width: 95%;
    }
    .container.scrollx .pin h2.title-scroll-h{
        margin: 0;
    }
    .circle-border{
 width: 60px;
 height: 60px;
    }
    .circle-wrapper{
         width: 60px;
 height: 60px;
    }
    .container {
    & div.sec1, & div.sec2, & div.sec3 {
        p{
width: 100%;
        }
    }}
    .contact-link.email{
        padding: 0;
        background: transparent;
        color: var(--light-color);
    }
    .circle-number{
        font-size: 20px;
    }
    .scrollx svg{
        bottom: 0;
    }
    .container-about-page{
        padding: 40px 20px;
    }
    .about-section-about{
        padding: 20px;
    }
    .about-section-about p{
        text-align: justify;
    }
    .d-none-l{
        display: block;
    }
    .contact-page{
        padding: 60px 20px;
    }
    .map-container{
        margin: 0;
    }
    .main-page{
 
    padding: 0 20px;
}
.contact-form{
    padding: 25px;
}
.contact-info{
    padding: 25px;
}
}