html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px; 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; 
    background: rgba(232, 240, 237, 0.85);
    backdrop-filter: blur(15px); 
    padding: 1rem 0; 
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar.hide-nav {
transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: #f9b43a;
    letter-spacing: -0.5px;
}
.logo-img {
    display: flex;
    align-items: center;
}
.logo-img img {
    height: 60px; 
    width: auto;
    display: block;
}
.logo span {
    color: #ffffff;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a2a26;
    font-size: 1.1rem;
    font-weight: 600; 
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-links a:hover {
    color: #f9b43a;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* ----- SECCIONES generales ----- */
section {
    scroll-margin-top: 85px; /* para que el navbar no tape el título */
}

.section-padding {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.3px;
    color: #1f2e2a;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #d4af37;
    margin: 0.6rem auto 0;
    border-radius: 4px;
}

.bg-dark {
    background-color: #000000;
}
.bg-dark .card:nth-child(1) i {
  color: #4fc3f7;
}

.bg-dark .card:nth-child(2) i {
  color: #ff8a65;
}

.bg-dark .card:nth-child(3) i {
  color: #81c784;
}

.bg-dark .card:nth-child(4) i {
  color: #ffd54f; 
}

.bg-dark .card:nth-child(5) i {
  color: #a1887f;
}

.bg-dark .card:nth-child(6) i {
  color: #ce93d8;
}
.bg-white {
    background-color: #ffffff;
}
bg-gray {
    background-color: #e7e7e0;
}
.bg-warm {
    background-color: #000000;
}
.bg-brown {
    background-color: #201f1d;
}
.bg-brown .section-title
{
    color: #ffffff;
}
.bg-brown .contact-detail-item h4 {
  color: #ff4b4b;
}

.bg-brown .contact-detail-item p {
  color: #ffffff;
}
.hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('assets/cañon3.jpg') center/cover no-repeat fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  transition: all 0.4s ease-in-out;
}
.hero-content {
    max-width: 800px;
    padding: 1rem;
}
.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.btn-hero {
    background: #f9b43a;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    color: #1f2e2a;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-hero.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-hero.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}
.btn-hero.btn-yellow {
  background: #f9b43a;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px; 
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-hero:hover {
    background: #ffc857;
    transform: scale(1.02);
}
.btn-hero.btn-green:hover {
  background: #1b5e20;
  transform: scale(1.02);
}

.badge {
  display: inline-block;
  background-color: rgba(255, 200, 50, 0.9);
  color: #1f2e2a;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.card {
    background: rgb(54, 54, 54);
    border-radius: 16px;
    border: 1px solid #5e120d;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.25s;
    text-align: center;
}
.bg-dark .card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}
.bg-dark .card{
    padding-left: 1.0rem;
    padding-right: 1.0rem;
    max-width: 350px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;    
}
.bg-dark .card i {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: transform 0.2s ease;
  align-self: flex-start;
}


.card p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}
.card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    color: #ffdd00;
}

.stars {
    color: #f9b43a;
    margin-bottom: 0.8rem;
}
.galeria-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.2s;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.about-text {
  padding-right: 2rem;
}
.about-tag {
  display: inline-block;
  color: #2e7d32;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2e2a;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.about-line {
  width: 60px;
  height: 3px;
  background-color: #2e7d32;
  margin-bottom: 1.8rem;
}

.about-paragraphs p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5a55;
  margin-bottom: 1.2rem;
}
.about-footer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 0.5rem;
}
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.feature-badge:hover {
  background-color: #e4e4e4;
  transform: translateY(-2px);
}
.feature-badge {
  display: inline-block;
  background-color: #f0f0f0;
  color: #1f2e2a;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.yellow-line {
  width: 3px;
  height: auto;
  background-color: #f9b43a;
  align-self: stretch;
  flex-shrink: 0;
}
.about-italic {
  font-size: 0.9rem;
  font-style: italic;
  color: #8a9a95;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.about-paragraphs p:last-child {
  margin-bottom: 0;
}

.about-gallery {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gallery-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
gap: 0.8rem;
}
.gallery-top-left,
.gallery-top-right {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
}
.gallery-top-left img,
.gallery-top-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-top-left img:hover,
.gallery-top-right img:hover,
.gallery-bottom img:hover {
  transform: scale(1.03);
}
.gallery-bottom-wrapper {
  position: relative;
  width: 100%;
}
.gallery-bottom {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.overlay-card {
  position: absolute;
  bottom: -20px;
  left: -15px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 0.9rem 1.2rem;
  width: calc(100% + 15px);
  max-width: 320px;
  z-index: 10;
  transition: transform 0.3s ease;
}
.overlay-card:hover {
  transform: translateY(-5px);
}
.overlay-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f0f0f0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-info {
  flex: 1;
}
.overlay-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2e2a;
  margin: 0 0 0.2rem 0;
}
.overlay-subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: #f9b43a;
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
}
.overlay-text {
  font-size: 0.7rem;
  color: #6b7a75;
  margin: 0;
  line-height: 1.4;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.tour-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.tour-card img {
    border-bottom: solid 2px #000000;
}
.tour-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tour-card:hover .tour-image img {
  transform: scale(1.05);
}
.tour-content {
    padding: 1.5rem;
}
.tour-tittle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2e2a;
    margin-bottom: 0.8rem;
}
.tour-info {
    padding: 1.2rem;
}
.tour-description {
    font-size: 0.95rem;
    color: #6b7a75;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.tour-divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 1rem 0;
}
.tour-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.tour-duration,
.tour-price {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.testimonios-section {
    padding: 80px 0;
    background-color: #f8faf9;
    text-align: center;
}
.section-title {
    font-size: 2.2rem;
    color: #1a2a26;
    margin-bottom: 3rem;
    font-weight: 700;
}
.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}
.testimonial-container {
    position: relative;
    min-height: 400px; /* Evita que el layout salte */
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateY(20px);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
}
.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f9b43a;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}
.client-name {
    color: #1a2a26;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.client-meta {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 5px;
}

.tour-tag span {
    background: #e6f2ee;
    color: #2d6a4f;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Controles */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    color: #2d6a4f;
    transition: 0.3s;
}
.control-btn:hover {
    background: #2d6a4f;
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #f9b43a;
    transform: scale(1.3);
}
.info-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}

.info-value {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2e2a;
}

.tour-price .info-value {
  color: #d4af37;
  font-size: 1.1rem;
}

.tour-btn {
  width: 100%;
  background: #d4af37;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  color: #1f2e2a;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.tour-btn:hover {
  background: #ffc857;
  transform: translateY(-2px);
}


.carousel-container {
  position: relative;
  overflow: hidden; 
  border-radius: 28px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-height: 350px; 
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}





.quote-icon {
  font-size: 2.5rem;
  color: #d4af37;
  opacity: 0.5;
  margin-bottom: 1rem;
}


.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #d4af37;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2e2a;
  margin: 0;
}

.author-city {
  font-size: 0.8rem;
  color: #8a9a95;
  margin: 0;
}

.author-tour {
  font-size: 0.8rem;
  color: #d4af37;
  font-weight: 500;
  margin: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem 0 2rem;
  background: white;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5d1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 28px;
  border-radius: 10px;
  background-color: #d4af37;
}

.dot:hover {
  background-color: #b8941e;
}
.contact-info-left {
  padding-right: 2rem;
}

.contact-info-left .section-title {
  text-align: left;
}

.contact-info-left .section-title:after {
  margin-left: 0;
  margin-right: 0;
}

/* Detalles de contacto */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-item i {
  font-size: 1.5rem;
  color: #d4af37;
  width: 35px;
  margin-top: 0.2rem;
}

.contact-detail-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2e2a;
  margin-bottom: 0.3rem;
}

.contact-detail-item p {
  font-size: 0.9rem;
  color: #6b7a75;
  line-height: 1.4;
  margin: 0;
}

/* Botones sociales */
.contact-social-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-btn i {
  font-size: 1.2rem;
}

.social-btn.whatsapp {
  background-color: #25D366;
  color: white;
}

.social-btn.whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
  color: white;
}

.social-btn.instagram:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-btn.facebook {
  background-color: #1877F2;
  color: white;
}

.social-btn.facebook:hover {
  background-color: #0d65d9;
  transform: translateY(-2px);
}

/* Mapa */
.contact-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.faq-item {
    background: white;
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.faq-question {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1f2e2a;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #4a5a55;
    margin-top: 0.5rem;
}
.faq-item.active .faq-answer {
    max-height: 120px;
    margin-top: 0.8rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}
.contact-item i {
    font-size: 1.8rem;
    color: #f9b43a;
    width: 40px;
}
form input, form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: inherit;
    background: #fff;
}
form textarea {
    border-radius: 24px;
    resize: vertical;
}
.btn-submit {
    background: #f9b43a;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}

footer {
    background: #0f241f;
    color: #ccc;
    padding: 2rem;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.reservacion-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}
.reservacion-header {
  text-align: center;
  margin-bottom: 2rem;
}
.reservacion-subtitle {
  color: #6b7a75;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.reservacion-form {
  width: 100%;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #1f2e2a;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group label i {
  color: #d4af37;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group small {
  display: block;
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.3rem;
}

.terminos {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
}

.terminos input {
  width: auto;
  transform: scale(1.1);
  margin: 0;
}

.terminos label {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7a75;
}

.btn-reservar-whatsapp {
  width: 100%;
  background: #25D366;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.btn-reservar-whatsapp i {
  font-size: 1.3rem;
}

.btn-reservar-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.form-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 1rem;
}
.galeria-subtitle {
  text-align: center;
  color: #6b7a75;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Filtros */
.galeria-filtros {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filtro-btn {
  background: transparent;
  border: 2px solid #d4af37;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  color: #1f2e2a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.filtro-btn:hover {
  background: #d4af37;
  color: white;
  transform: translateY(-2px);
}

.filtro-btn.active {
  background: #d4af37;
  color: white;
}

/* Grid de galería */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Item de galería */
.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria-item:hover {
  transform: translateY(-5px);
}

.galeria-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
}

.galeria-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item:hover .galeria-img-container img {
  transform: scale(1.1);
}

/* Overlay con información */
.galeria-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 1.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.galeria-item:hover .overlay-content {
  transform: translateY(0);
}

.tour-location {
  display: inline-block;
  background: rgba(212, 175, 55, 0.9);
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tour-location i {
  margin-right: 0.3rem;
  font-size: 0.7rem;
}

.tour-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: white;
}

.tour-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tag:hover {
  background: #d4af37;
  color: #1f2e2a;
}

/* Responsive */
@media (max-width: 768px) {
  .galeria-filtros {
    gap: 0.6rem;
  }
  
  .filtro-btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  
  .galeria-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }
  
  .tour-name {
    font-size: 1.1rem;
  }
  
  .tour-desc {
    font-size: 0.75rem;
  }
  
  .tag {
    font-size: 0.65rem;
  }
}

/* Animación de entrada para los items */
.galeria-item {
  animation: fadeInUp 0.6s ease backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Retrasos para cada item */
.galeria-item:nth-child(1) { animation-delay: 0.05s; }
.galeria-item:nth-child(2) { animation-delay: 0.1s; }
.galeria-item:nth-child(3) { animation-delay: 0.15s; }
.galeria-item:nth-child(4) { animation-delay: 0.2s; }
.galeria-item:nth-child(5) { animation-delay: 0.25s; }
.galeria-item:nth-child(6) { animation-delay: 0.3s; }
.galeria-item:nth-child(7) { animation-delay: 0.35s; }
.galeria-item:nth-child(8) { animation-delay: 0.4s; }
.galeria-item:nth-child(9) { animation-delay: 0.45s; }
@media (max-width: 900px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
    padding: 1rem 0;
    background: rgba(10, 25, 20, 0.95);
    border-radius: 20px;
    }
    .nav-links.show {
    display: flex;
    }
    .menu-icon {
    display: block;
    }
    .navbar {
    padding: 0.8rem 1.5rem;
    }
    .about-features {
        justify-content: center;
    }
    .feature-badge {
        white-space: normal;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    .hero-content h1 {
    font-size: 2.4rem;
    }
    .section-title {
    font-size: 1.8rem;
    }
    .grid-2 {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .about-text {
      padding-right: 0;
      text-align: center;
    }
    
    .about-tag {
      text-align: center;
      display: inline-block;
    }
    .grid-3 {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .about-line {
      margin-left: auto;
      margin-right: auto;
    }
    
    .about-title {
      font-size: 1.8rem;
      text-align: center;
    }
    
    .about-paragraphs p {
      text-align: center;
    }
    
    .gallery-top {
      gap: 0.8rem;
    }
    
    .gallery-top-left,
    .gallery-top-right {
      aspect-ratio: 1 / 1;
    }
    
    .overlay-card {
      position: relative;
      bottom: 0;
      left: 0;
      margin-top: 0.5rem;
      width: 100%;
      max-width: 100%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-bottom-wrapper {
      margin-bottom: 0;
    }
    
    .gallery-top {
      gap: 0.8rem;
    }
    
    .gallery-top-left,
    .gallery-top-right {
      aspect-ratio: 1 / 1;
    }
    
    .gallery-bottom {
      aspect-ratio: 16 / 9;
    }

    .contact-info-left {
    padding-right: 0;
  }
  
  .contact-info-left .section-title {
    text-align: center;
  }
  
  .contact-info-left .section-title:after {
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-detail-item {
    justify-content: center;
  }
  
  .contact-social-buttons {
    justify-content: center;
  }
  
  .contact-map {
    min-height: 300px;
  }
  
  .contact-map iframe {
    min-height: 300px;
  }
    .author-avatar {
      width: 50px;
      height: 50px;
    }
    
    .author-name {
      font-size: 0.9rem;
    }
    
    .author-city,
    .author-tour {
      font-size: 0.7rem;
    }
    
    .quote-icon {
      font-size: 2rem;
      color: #d4af37;
      margin-bottom: 1rem;
      display: block;
    }
}
@media (max-width: 580px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section-padding {
    padding: 3rem 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-hero.btn-outline,
    .btn-hero.btn-green {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
      .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .tour-image {
    height: 220px
  }
  .tour-image img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
  }
  .tour-content {
    padding: 1.2rem;
  }
  
  .tour-title {
    font-size: 1.2rem;
  }

    .social-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .contact-detail-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-detail-item i {
    margin-bottom: 0.5rem;
  }
  .author-info {
    text-align: center;
  }
}
.btn-reserva {
    background: #f9b43a;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    margin-top: 0.8rem;
    cursor: pointer;
}
.mapa-placeholder {
    background: #e2e8e4;
    border-radius: 24px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c4b3e;
    font-weight: 500;
}