/* =============================
   CSS Reset y Base Styles
   ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, .site-header {
  font-family: 'Roboto Condensed', Arial, sans-serif;
}

/* =============================
   Hero Banner Section
   ============================= */
.hero-banner-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  margin: 0;
  position: relative;
}

.hero-banner {
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 100%;
  min-height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  display: flex;
  align-items: center;
  padding-top: 180px;
  z-index: 2;
}

.hero-content {
  max-width: 1800px;
  margin-left: 0;
  padding: 0 60px;
  color: white;
}

.hero-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0.9;
}

.hero-btn {
  font-family: 'Roboto', Arial, sans-serif;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: white;
  color: #373f3f;
  transform: translateY(-2px);
}

/* =============================
   Hero Video Responsive
   ============================= */
@media (max-width: 1024px) {
  .hero-banner-container,
  .hero-banner {
    height: 70vh;
  }
  
  .hero-overlay {
    padding-top: 140px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-banner-container,
  .hero-banner {
    height: 60vh;
  }
  
  .hero-overlay {
    padding-top: 150px;
  }
  
  .hero-video {
    object-position: center center;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-banner-container,
  .hero-banner {
    height: 50vh;
  }
  
  .hero-video {
    object-position: center center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero-banner-container,
  .hero-banner {
    height: 100vh;
  }
}

/* =============================
   TOUR PACKAGES GRID SECTION
   ============================= */
.tour-packages-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.packages-header {
  text-align: center;
  margin-bottom: 60px;
}

.packages-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

.packages-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #373f3f;
  margin: 0;
  margin-top: 20px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.packages-grid .package-card:nth-child(1) {
  grid-column: 1/3;
}

.packages-grid .package-card:nth-child(2) {
  grid-column: 3/5;
}

.packages-grid .package-card:nth-child(3) {
  grid-column: 5/7;
}

.packages-grid .package-card:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2;
}

.packages-grid .package-card:nth-child(5) {
  grid-column: 4/6;
  grid-row: 2;
}

.package-card {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 380px;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.package-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-content {
  padding: 24px;
}

.package-duration {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #89b126;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.package-name {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #373f3f;
  margin-bottom: 15px;
  line-height: 1.2;
}

.package-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.price-label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}

.price-amount {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #89b126;
}

.price-unit {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}

.package-btn {
  background: #373f3f;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
}

.package-btn:hover {
  background: #2c3536;
  transform: translateY(-1px);
}

/* =============================
   TOUR PACKAGES RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .packages-grid .package-card:nth-child(1),
  .packages-grid .package-card:nth-child(2),
  .packages-grid .package-card:nth-child(3),
  .packages-grid .package-card:nth-child(4),
  .packages-grid .package-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .packages-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .tour-packages-section {
    padding: 80px 0 60px 0;
  }
  
  .packages-container {
    padding: 0 20px;
  }
  
  .packages-header {
    margin-bottom: 40px;
    padding-top: 20px;
  }
  
  .packages-title {
    font-size: 2rem;
  }
  
  .packages-subtitle {
    font-size: 1.1rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .packages-grid .package-card:nth-child(1),
  .packages-grid .package-card:nth-child(2),
  .packages-grid .package-card:nth-child(3),
  .packages-grid .package-card:nth-child(4),
  .packages-grid .package-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .package-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    min-height: 44px;
  }
}

/* =============================
   ROOMS SECTION
   ============================= */
.rooms-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.rooms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rooms-header {
  text-align: center;
  margin-bottom: 60px;
}

.rooms-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #373f3f;
  margin: 0;
  margin-bottom: 8px;
}

.rooms-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin: 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 450px;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.room-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.room-content {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  text-align: left;
  color: white;
  z-index: 2;
  background: rgba(55, 63, 63, 0.6);
  padding: 20px 25px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.room-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: white;
}

.room-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.room-btn {
  background: transparent;
  color: white;
  border: 1.5px solid white;
  padding: 14px 28px;
  border-radius: 25px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-shadow: none;
}

.room-btn:hover {
  background: white;
  color: #373f3f;
  transform: none;
}

/* =============================
   ROOMS RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .rooms-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .rooms-section {
    padding: 60px 0;
  }
  
  .rooms-container {
    padding: 0 20px;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .rooms-header {
    margin-bottom: 40px;
  }
  
  .rooms-title {
    font-size: 2rem;
  }
  
  .room-card {
    height: 380px;
  }
  
  .room-content {
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 16px 20px;
  }
  
  .room-title {
    font-size: 1.6rem;
  }
  
  .room-subtitle {
    font-size: 0.85rem;
  }
  
  .room-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .room-card {
    height: 350px;
  }
  
  .room-content {
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 14px 18px;
  }
  
  .room-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  
  .room-subtitle {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .room-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    min-height: 44px;
  }
}

/* =============================
   Intro Section (Why Choose Us - 4 Columns)
   ============================= */
.intro-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.intro-section-container {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.intro-header {
  text-align: center;
  margin-bottom: 80px;
}

.intro-main-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 45px;
  font-weight: 300;
  color: #373f3f;
  line-height: 1.1;
  margin: 0;
}

h3{
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #666;
}

.intro-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

/* Líneas divisorias verticales */
.feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(55, 63, 63, 0.15);
}

.feature-card:hover {
  transform: none;
  box-shadow: none;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #89b126;
  transform: scale(1.05);
}

.feature-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-img {
  filter: brightness(0) invert(1);
}

.feature-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 25px;
  font-weight: 300;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

.feature-description {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  flex: 1;
}

/* =============================
   Media Queries - Responsive
   ============================= */

/* Desktop grande (1400px+) */
@media (min-width: 1400px) {
  .intro-features-grid {
    gap: 80px;
  }
  
  .intro-main-title {
    font-size: 45px;
  }
  
  .feature-card {
    padding: 50px 30px;
  }
}

/* Laptop estándar (1024px - 1399px) */
@media (max-width: 1399px) {
  .intro-section-container {
    padding: 0 30px;
  }
  
  .intro-features-grid {
    gap: 40px;
  }
  
  .feature-card {
    padding: 35px 20px;
  }
}

/* Tablet horizontal (768px - 1023px) */
@media (max-width: 1023px) {
  .intro-section {
    padding: 80px 0;
  }
  
  .intro-section-container {
    padding: 0 20px;
  }
  
  .intro-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .intro-main-title {
    font-size: 3rem;
  }
  
  .intro-header {
    margin-bottom: 60px;
  }
}

/* Tablet vertical y móvil grande (600px - 767px) */
@media (max-width: 767px) {
  .intro-section {
    padding: 60px 0;
  }
  
  .intro-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-main-title {
    font-size: 2.5rem;
  }
  
  .intro-header {
    margin-bottom: 50px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }
  
  .feature-img {
    width: 40px;
    height: 40px;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
  }
}

/* Móvil estándar (480px - 599px) */
@media (max-width: 599px) {
  .intro-section {
    padding: 50px 0;
  }
  
  .intro-section-container {
    padding: 0 16px;
  }
  
  .intro-main-title {
    font-size: 2rem;
  }
  
  .intro-header {
    margin-bottom: 40px;
  }
  
  .feature-card {
    padding: 25px 15px;
  }
  
  .feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
}

/* Móvil pequeño (hasta 479px) */
@media (max-width: 479px) {
  .intro-section {
    padding: 40px 0;
  }
  
  .intro-section-container {
    padding: 0 12px;
  }
  
  .intro-main-title {
    font-size: 1.8rem;
  }
  
  .intro-header {
    margin-bottom: 30px;
  }
  
  .feature-card {
    padding: 20px 10px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-img {
    width: 35px;
    height: 35px;
  }
}

/* Tablet (hasta 1360px) - Hero Banner */
@media (max-width: 1360px) {
  .hero-banner {
    height: 500px;
  }
}

/* Tablet (hasta 1024px) - Hero Banner */
@media (max-width: 1024px) {
  .hero-banner {
    height: 500px;
  }
}

/* =============================
   Experiences Slider Section
   ============================= */
.experiences-slider {
  background: #373f3f;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.experiences-container {
  display: flex;
  flex-direction: column;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  height: auto;
  position: relative;
}

/* CSS de experiences-title movido o eliminado para evitar conflictos */

/* CSS de experiences h3 movido para evitar conflictos */

.experiences-content-wrapper {
  display: flex;
  height: 600px;
  position: relative;
}

/* Main Experience (Left 70%) */
.experiences-content-wrapper .experience-main {
  flex: 0 0 70%;
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
}

.experience-main.slide-out {
  transform: translateX(-100%);
  opacity: 0;
}

.experience-main.slide-in {
  transform: translateX(100%);
  opacity: 0;
}

.experience-main.active {
  transform: translateX(0);
  opacity: 1;
}

.experience-content {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-category {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 25px;
  color: #89b126;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.experience-price {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 35px;
  color: #89b126;
  font-weight: 300;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
  display: block;
  margin: 0;
}

.experience-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

.experience-description {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}

.experience-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.experience-btn {
  background: #373f3f;
  color: #fff;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.experience-btn svg {
  stroke: currentColor;
  flex-shrink: 0;
}

.experience-btn:hover {
  background: #89b126;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(55, 63, 63, 0.3);
}

.experience-image-main {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.main-experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Preview Experience (Right 30%) */
.experiences-content-wrapper .experience-preview {
  flex: 0 0 25%;
  margin-left: 5%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1) translateX(0);
}

.experience-preview.expanding {
  transform: scale(1.4) translateX(-50%);
  z-index: 10;
  flex: 0 0 35%;
}

.experience-preview.new-preview {
  transform: translateX(100%);
  opacity: 0;
}

.experience-preview.active-preview {
  transform: translateX(0);
  opacity: 1;
}

.experience-image-preview {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.preview-experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
  filter: blur(2px) grayscale(50%);
}

.preview-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-preview:hover .preview-experience-img {
  transform: scale(0.95);
  filter: blur(1px) grayscale(30%);
}

.experience-preview:hover .preview-mask {
  background: rgba(0, 0, 0, 0.2);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 16px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #89b126;
  background: rgba(255, 255, 255, 0.9);
  color: #89b126;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #89b126;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(137, 177, 38, 0.3);
}

/* Experiences Slider Responsive Design */
@media (max-width: 1200px) {
  .experiences-container {
    padding: 0 20px;
  }
  
  .experience-content {
    padding: 40px 30px;
  }
}

/* Tablet y móvil: Layout vertical con imagen arriba */
@media (max-width: 900px) {
  .experiences-content-wrapper {
    flex-direction: column;
    height: auto;
    gap: 0;
    align-items: center;
  }
  
  .experiences-content-wrapper .experience-main {
    flex: none;
    width: 100%;
    max-width: 600px;
    flex-direction: column;
    height: auto;
    min-height: 700px;
  }
  
  .experience-image-main {
    flex: none;
    height: 400px;
    order: 1;
  }
  
  .experience-content {
    flex: none;
    order: 2;
    padding: 40px 30px;
    text-align: center;
  }
  
  .experience-btn {
    align-self: center;
  }
  
  .experience-footer {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
  }
  
  .experience-price {
    font-size: 22px;
  }
  
  /* Ocultar preview en tablet/móvil */
  .experiences-content-wrapper .experience-preview {
    display: none;
  }
  
  .slider-controls {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .experiences-slider {
    padding: 60px 0;
  }
  
  .experiences-container {
    padding: 0 16px;
  }
  
  .experiences-content-wrapper .experience-main {
    max-width: 100%;
    min-height: 600px;
  }
  
  .experience-image-main {
    height: 300px;
  }
  
  .experience-content {
    padding: 30px 20px;
  }
  
  .experience-btn {
    align-self: center;
  }
  
  .experience-footer {
    margin-top: 20px;
    gap: 12px;
  }
  
  .experience-price {
    font-size: 20px;
  }
  
  .experience-title {
    font-size: 2rem;
  }
  
  .experience-description {
    font-size: 1rem;
  }
  
  .slider-controls {
    margin-top: 20px;
  }
}

/* ==============================================
   10. EXPERIENCES SECTION
   ============================================== */

.experiencias-section {
  padding: 100px 0;
  background: #ffffff;
}

/* ==============================================
   11. BLOG SECTION
   ============================================== */

.blog-section {
  padding: 100px 0;
  background: #ffffff;
}

.blog-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #373f3f;
  margin: 0;
  margin-bottom: 8px;
}

.blog-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 30px;
}

.blog-view-all-btn {
  background: transparent;
  color: #373f3f;
  border: 2px solid #373f3f;
  padding: 12px 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
}

.blog-view-all-btn:hover {
  background: #373f3f;
  color: white;
  transform: translateY(-2px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 480px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.blog-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  z-index: 1;
}

.blog-card:hover .blog-image::before {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-article-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.blog-excerpt {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-btn {
  background: transparent;
  color: #373f3f;
  border: 2px solid #373f3f;
  padding: 12px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-btn:hover {
  background: #373f3f;
  color: white;
  transform: translateY(-1px);
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .blog-card {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-section-container {
    padding: 0 20px;
  }
  
  .blog-header {
    margin-bottom: 40px;
  }
  
  .blog-title {
    font-size: 2.2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-card {
    height: 350px;
  }
  
  .blog-btn {
    padding: 12px 20px;
    font-size: 0.8rem;
    min-height: 44px;
  }
}

.blog-excerpt {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

/* Blog Responsive Design */
@media (max-width: 1024px) {
  .blog-section-container {
    padding: 0 30px;
  }
  
  .blog-container {
    gap: 30px;
  }
  
  .blog-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-section-container {
    padding: 0 20px;
  }
  
  .blog-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .blog-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-content {
    padding: 25px;
  }
  
  .blog-article-title {
    font-size: 1.3rem;
  }
  
  .blog-excerpt {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .blog-content {
    padding: 20px;
  }
  
  .blog-article-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .blog-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* ==============================================
   11. SUSTAINABILITY SECTION
   ============================================== */

.sustainability-section {
  background-image: url('../img/rio-tambopata-explorers-inn.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.sustainability-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 500px;
}

.sustainability-content {
  background: rgba(55, 63, 63, 0.5);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
  margin-right: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sustainability-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.sustainability-description {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.6;
  font-style: italic;
}

.sustainability-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sustainability-features li {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.sustainability-features li::before {
  content: "•";
  color: #89b126;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sustainability-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  
  .sustainability-container {
    justify-content: center;
    padding: 0 15px;
  }
  
  .sustainability-content {
    margin-right: 0;
    max-width: 100%;
    padding: 40px 30px;
  }
  
  .sustainability-title {
    font-size: 2rem;
  }
  
  .sustainability-description {
    font-size: 1.1rem;
  }
  
  .sustainability-features li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .sustainability-section {
    padding: 60px 0;
  }
  
  .sustainability-content {
    padding: 30px 25px;
    border-radius: 10px;
  }
  
  .sustainability-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .sustainability-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .sustainability-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}

