/* ========== RESET  ========== */
:root {
  --primary-color: #1d3557;
  --secondary-color: #457b9d;
  --accent-color: #e63946;
  --light-color: #f1faee;
  --dark-color: #2b2d42;
  --text-color: #333;
  --white: #fff;
  --gray: #e9ecef;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: white;
  background-color: #fff;
  overflow-x: hidden;
}

.barra-superior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000; 
  padding: 8px 5%;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* Redes sociales */
.redes-sociales {
  display: flex;
  gap: 12px;
  align-items: center;
}

.redes-sociales img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1);
}

.redes-sociales img:hover {
  transform: scale(1.2);
  filter: brightness(1.5);
}

.idiomas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.banderas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banderas img {
  width: 28px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #444;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banderas img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 5px #fff;
}

/* Buscador */
.buscador {
  display: flex;
  align-items: center;
  gap: 8px;
}

.buscador input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  min-width: 120px;
}

.buscador button {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buscador button:hover {
  background-color: #d62839;
}

@media (max-width: 768px) {
  .barra-superior {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
  }

  .idiomas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .buscador {
    width: 100%;
    justify-content: center;
  }

  .buscador input {
    width: 70%;
  }

  .banderas img {
    width: 24px;
    height: 16px;
  }

  .redes-sociales img {
    width: 24px;
    height: 24px;
  }
}

/* ========== LOGO  ========== */
nav { 
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  position: relative;
  box-shadow: none;
  z-index: 1000;
}

.logo {
  height: 150px;
  margin-left: 0;
}

.menu-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-list li {
  position: relative;
}

.menu-list > li {
  margin-left: 20px;
}

.menu-list a {
  text-decoration: none;
  color: #1d3557;
  padding: 15px 10px;
  display: block;
  font-weight: 600;
}

.submenu {
  display: none;
  position: absolute;
  background: #f9f9f9;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 100%;
  left: 0;
  min-width: 180px;
  flex-direction: column;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  z-index: 1000;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  display: flex;
}

.submenu li a {
  color: #1d3557;
  padding: 12px 10px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.has-submenu .arrow {
  float: right;
  transition: transform 0.3s;
}

.submenu .has-submenu .submenu {
  margin-left: 10px;
  position: static;
  background-color: #f9f9f9;
}

.has-submenu > a {
  cursor: pointer;
}

#check {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #1d3557;
  user-select: none;
}

.close-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #1d3557;
  user-select: none;
}

@media screen and (max-width: 768px) {
  nav {
    padding: 0 10px;
    position: relative;
    z-index: 11000; 
  }

  .logo {
    height: 150px;
    display: block;
  }

  .checkbox {
    order: 2; 
    cursor: pointer;
    z-index: 12000;
  }

  .menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #1d3557;
    user-select: none;
  }

  .close-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #1d3557;
    user-select: none;
  }

  
  .menu-list {
    position: fixed;
    top: 0;
    left: -280px; 
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 70px;
    padding-left: 20px;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.2);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 12000;
  }

  #check:checked ~ .menu-list {
    left: 0;
  }

  #check:checked + label .menu-icon {
    display: none;
  }

  #check:checked + label .close-icon {
    display: block;
  }

  .menu-list li {
    width: 100%;
    position: relative;
  }

  .menu-list > li {
    margin-left: 0; 
  }

  .menu-list a {
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d3557;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.25s ease;
  }

  .menu-list a:hover {
    background-color: #f1f5f9;
    color: #457b9d;
  }

  .has-submenu > a .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .submenu {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 0;
  }

  .has-submenu:focus-within > .submenu,
  .has-submenu:hover > .submenu {
    display: flex;
  }

  .submenu li a {
    padding: 12px 10px;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    color: #1d3557;
  }

  .submenu li a:hover {
    background-color: #e9f0f7;
    color: #457b9d;
  }

  .has-submenu:focus-within > a .arrow,
  .has-submenu:hover > a .arrow {
    transform: rotate(180deg);
  }

  #check:checked ~ .overlay {
    position: fixed;
    top: 0;
    left: 280px;
    width: calc(100% - 280px);
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
    opacity: 1;
    z-index: 11000;
    pointer-events: auto;
  }

  .overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #check:checked ~ main {
    transform: translateX(280px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
}



/* ========== Carrusel ========== */
.tours-section {
  text-align: center;
  padding: 40px 20px;
  background: #f0f4f8;
}

.carousel-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}

.carousel-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: max-content;
  min-width: 100%;
}

.tour-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
  min-width: 260px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-img {
  position: relative;
  height: 170px;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heart {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2rem;
  color: #1d3557;
  cursor: pointer;
}

.tour-body {
  padding: 15px;
  text-align: left;
}

.title {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1rem;
  color: #1d3557;
}

.price {
  font-size: 1rem;
  font-weight: bold;
  color: #e63946;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}

@media (max-width: 992px) {
  .tours-title {
    font-size: 2rem;
    padding: 10px 20px;
  }
}

@media (max-width: 600px) and (orientation: portrait) {
  .tours-title {
    font-size: 1.7rem;
    padding: 10px 15px;
  }

  .title {
    font-size: 0.95rem;
  }

}

@media (max-width: 992px) and (orientation: landscape) {
  .tours-title {
    font-size: 2rem;
  }
}


/* ========== SECCIONES ========== */
.info-tabla {
  padding: 40px 5%;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-tabla h3 {
  font-size: 26px;
  color: #b30000;
  font-style: italic;
  margin-bottom: 10px;
}

.info-tabla strong {
  display: block;
  font-size: 20px;
  margin: 10px 0;
  color: #333;
}

.info-tabla p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.servicio-icono {
  height: 100px;
  margin: 20px auto;
  display: block;
}

.tripadvisor-section {
  padding: 40px 5%;
  text-align: center;
  max-width: 1200px;
  margin: 40px auto 0;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tripadvisor-section h3 {
  font-size: 26px;
  color: #b30000;
  font-style: italic;
  margin-bottom: 10px;
}

.tripadvisor-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.tripadvisor-widget {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.tripadvisor-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f5f5f5;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tripadvisor-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.tripadvisor-logo {
  width: 120px;
  height: auto;
}

.tripadvisor-text {
  color: #007b5f;
  font-weight: 600;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-tabla h3,
  .tripadvisor-section h3 {
    font-size: 22px;
  }

  .info-tabla strong {
    font-size: 18px;
  }

  .info-tabla p,
  .tripadvisor-section p {
    font-size: 15px;
  }

  .tripadvisor-link {
    padding: 15px 20px;
  }

  .tripadvisor-text {
    font-size: 14px;
    text-align: center;
  }

  .tripadvisor-logo {
    width: 100px;
  }

  .servicio-icono {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .tripadvisor-link {
    width: 100%;
    box-sizing: border-box;
  }

  .tripadvisor-section,
  .info-tabla {
    padding: 30px 5%;
  }
}


/* ========== TOURS ========== */
.tours-gallery {
  padding: 60px 5%;
  background-color: var(--light-color);
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--dark-color);
  position: relative;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  background-color: #fff;
  text-decoration: none;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Ratio 4:3 */
  overflow: hidden;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .card-image img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px;
  color: var(--white);
  opacity: 1;
  transform: translateY(100%);
  transition: var(--transition);
}

.tour-card:hover .overlay {
  transform: translateY(0);
}

.overlay span {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .card-image {
    padding-bottom: 66%; 
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.4rem;
  }

  .tours-gallery {
    padding: 40px 3%;
  }

  .card-image {
    padding-bottom: 60%; 
  }

  .overlay span {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr; 
  }
}

/* ========== PROMO NACIONALES ========== */
.promo-nacionales {
  display: flex;
  justify-content: center;
  margin: 50px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.promo-bg {
  background: linear-gradient(145deg, #2e7d32, #4caf50);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  width: 100%;
  max-width: 850px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-top: 4px solid #ffeb3b;
  border-bottom: 4px solid #ffeb3b;
}

.promo-bg::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 24 24' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 19.5L21.5 4.5L20.5 2.5L10.5 10.5L9 6L7.5 7L9 13.5L2.5 17.5V19.5Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  animation: fly-up 6s ease-in-out infinite;
  top: 70%;
  left: -100px;
  transform: rotate(20deg);
  opacity: 0.8;
  z-index: 3;
}

.promo-bg::after {
  content: "";
  position: absolute;
  top: 78%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ffffff55 0%, transparent 100%);
  animation: trail-move 6s ease-in-out infinite;
  z-index: 1;
}

.promo-shape {
  position: absolute;
  width: 100%;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  left: 0;
}

.promo-shape--top {
  top: 0;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.promo-shape--bottom {
  bottom: 0;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.promo-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.promo-logo {
  display: none; 
}

.promo-title {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
  position: relative;
}

.promo-title span {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 5px;
}

.promo-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.promo-circles {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
  position: relative;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 3px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-book {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f9a825;
  color: #1e3c72;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.btn-book:hover {
  background-color: #ffc107;
  transform: translateX(-50%) scale(1.05);
}

.promo-cta {
  margin-top: 20px;
}

.promo-cta .btn-consulta {
  background-color: #f9a825;
  color: #1e3c72;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.promo-cta .btn-consulta:hover {
  background-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animaciones */
@keyframes fly-up {
  0% {
    transform: translate(0, 0) rotate(20deg);
    opacity: 0.2;
  }
  25% {
    transform: translate(60px, -40px) rotate(25deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(140px, -80px) rotate(20deg);
    opacity: 1;
  }
  75% {
    transform: translate(220px, -120px) rotate(15deg);
    opacity: 0.7;
  }
  100% {
    transform: translate(300px, -160px) rotate(10deg);
    opacity: 0.2;
  }
}

@keyframes trail-move {
  0% {
    transform: translateX(0);
    opacity: 0.3;
  }
  100% {
    transform: translateX(300px);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .promo-title {
    font-size: 1.8rem;
  }

  .promo-title span {
    font-size: 1.1rem;
  }

  .promo-subtitle {
    font-size: 1rem;
  }

  .circle {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .promo-bg {
    padding: 20px 15px;
    border-radius: 12px;
    border-width: 3px;
  }

  .promo-title {
    font-size: 1.5rem;
  }

  .promo-title span {
    font-size: 1rem;
  }

  .promo-subtitle {
    font-size: 0.9rem;
  }

  .promo-circles {
    gap: 15px;
  }

  .circle {
    width: 80px;
    height: 80px;
  }

  .btn-book {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .promo-cta .btn-consulta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ========== whatsapp ========== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsivo: ajusta el tamaño en pantallas pequeñas */
@media only screen and (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  background-color: var(--dark-color);
  color: var(--white);
  padding-top: 60px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23000" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23000"/></svg>') no-repeat;
  background-size: cover;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 40px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  width: 20px;
  text-align: center;
}

.footer-services .footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  margin: 5px;
  transition: var(--transition);
}

.footer-services .footer-btn:hover {
  background-color: #c1121f;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .logo-section {
    flex-direction: column;
    align-items: center;
  }
  
  .buscador-avanzado {
    width: 100%;
  }
  
  .main-menu > ul {
    flex-direction: column;
    gap: 5px;
  }
  
  .main-menu > ul > li > a {
    border-radius: 0;
  }
  
  .submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .has-submenu:hover > .submenu {
    transform: none;
  }
  
  .submenu .has-submenu > .submenu {
    left: 0;
    margin-left: 0;
  }
  
  .carrusel {
    height: 300px;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
  
  .circle {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    justify-content: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .promo-circles {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-services .footer-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .carrusel {
    height: 200px;
  }
  
  .ver-tour {
    padding: 8px 16px;
    font-size: 16px;
  }
  
  .promo-title {
    font-size: 1.5rem;
  }
}