.hero-eco {
    position: relative;
    min-height: 90vh;
    color: #fff;
    overflow: hidden;
    background: url('bannermain.jpg') center center / cover no-repeat fixed;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.10;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0,194,168,0.6), rgba(11,93,76,0.95));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title span {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: .5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-buttons .btn {
    margin-right: .75rem;
    margin-bottom: .75rem;
}

/* CTA Buttons */
.btn-cta-primary {
    background: linear-gradient(135deg, #FF7A00, #FFC857);
    border: none;
    color: #fff !important;
    padding: .9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff !important;
    padding: .9rem 1.8rem;
    border-radius: 999px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* Hero badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.35);
    backdrop-filter: blur(6px);
}

.badge-icon {
    font-size: 1.5rem;
    margin-right: .7rem;
}

.badge-title {
    font-size: .95rem;
    font-weight: 600;
    margin: 0;
}

.badge-text {
    font-size: .8rem;
    opacity: .9;
    margin: 0;
}

/* ===== SECTION GENERIC ===== */
.section-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #0F172A;
}

.section-title.light {
    color: #fff;
}

.section-subtitle {
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.section-text.light {
    color: #E5E7EB;
}

/* ===== TOUR CARDS (PASSES) ===== */
.section-passes {
    padding: 80px 0;
    background: radial-gradient(circle at top, #F5FBF8, #E0F2F1);
}

.tour-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15,23,42,0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-image {
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .35s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.06);
}

.tour-pill {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(11,93,76,0.9);
    color: #fff;
    padding: .35rem .9rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
}

.tour-body {
    padding: 1.3rem 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: #0B5D4C;
}

.tour-text {
    font-size: .95rem;
    color: #4B5563;
}

.tour-meta {
    list-style: none;
    padding: 0;
    margin: .8rem 0 1rem;
    font-size: .9rem;
    color: #6B7280;
}

.tour-meta li + li {
    margin-top: .2rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-price {
    font-size: .9rem;
    color: #6B7280;
}

.tour-price span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FF7A00;
}

/* ===== TRANSFERS SECTION ===== */
.section-transfers {
    padding: 80px 0;
    background: linear-gradient(120deg, #0B5D4C, #0F766E);
    color: #fff;
}

.transfer-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.transfer-list li + li {
    margin-top: .3rem;
}

.transfer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}

.transfer-gallery img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    height: 130px;
}

/* ===== TESTIMONIALS ===== */
.section-testimonials {
    padding: 80px 0 90px;
    background: url('wy.jpeg') center/cover fixed no-repeat;
    position: relative;
}

.section-testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.6);
}

.section-testimonials > .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.section-testimonials .section-subtitle {
    color: #E5E7EB;
}

.testimonial-card {
    background: rgba(15,23,42,0.85);
    border-radius: 24px;
    padding: 1.8rem 1.6rem;
    height: 100%;
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

.testimonial-title {
    font-weight: 700;
    margin-bottom: .6rem;
    font-size: 1.05rem;
}

.testimonial-text {
    font-size: .95rem;
}

.testimonial-author {
    margin-top: 1rem;
    font-size: .85rem;
    opacity: .85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-eco {
        text-align: left;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: .98rem;
    }
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    .transfer-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

/**===== seccion transfers ===== */
/* ===== TRANSFERS SECTION ===== */
/* ===== GALERÍA PRO DE TRANSFERS ===== */
.transfer-gallery-pro {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Filas */
.gallery-row {
    display: flex;
    gap: 1.2rem;
}

/* Fila superior: imagen grande + columna lateral */
.gallery-row-top {
    align-items: stretch;
}

/* Columna de las 2 imágenes pequeñas */
.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 40%;
}

/* Tarjetas genéricas */
.gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0a4a40;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    isolation: isolate;
}

/* Imagen principal: más ancha y con proporción controlada */
.gallery-card-main {
    flex: 1;
    aspect-ratio: 16 / 9;
}

/* Imágenes pequeñas: mismas proporciones, no aplastadas */
.gallery-card-small {
    flex: 1;
    aspect-ratio: 16 / 9;
}

/* Imagen inferior ancha */
.gallery-row-bottom {
    width: 100%;
}

.gallery-card-wide {
    width: 100%;
    aspect-ratio: 21 / 9;
}

/* Imágenes dentro de la tarjeta */
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* rellena bien la tarjeta */
    object-position: center;    /* centra para que no se vea corte raro */
    display: block;
    transition: transform .45s ease, filter .45s ease, opacity .45s ease;
}

/* Tag / etiqueta */
.gallery-tag {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.78);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
}

/* Hover efecto premium */
.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
        rgba(255,255,255,0.16),
        transparent 55%);
    opacity: 0;
    transition: opacity .45s ease;
    mix-blend-mode: soft-light;
}

.gallery-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.15);
}

.gallery-card:hover::before {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .gallery-card-main {
        aspect-ratio: 16 / 10;
    }
    .gallery-card-wide {
        aspect-ratio: 18 / 9;
    }
}

@media (max-width: 767px) {
    .transfer-gallery-pro {
        gap: 1rem;
    }

    .gallery-row,
    .gallery-column {
        flex-direction: column;
    }

    .gallery-column {
        width: 100%;
    }

    .gallery-card-main,
    .gallery-card-small,
    .gallery-card-wide {
        width: 100%;
        aspect-ratio: 16 / 10;
    }
}

.payment-security-section {
  background: #e8f9f0;
  padding: 70px 0;
  border-radius: 0 0 50px 50px;
}

.payment-title {
  font-size: 36px;
  font-weight: 700;
  color: #004f41;
  margin-bottom: 15px;
}

.payment-description {
  font-size: 18px;
  color: #345;
  margin-bottom: 20px;
}

.payment-benefits {
  list-style: none;
  padding: 0;
  line-height: 1.8em;
  color: #004f41;
  font-size: 17px;
}

.payment-logos-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px 25px;
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.payment-logo {
  max-width: 60px;
  opacity: 0.9;
  transition: 0.3s;
}

.payment-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.payment-secured {
  font-size: 14px;
  margin-top: 10px;
  color: #1d6b54;
  font-weight: 600;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;          /* Si lo quieres a la izquierda usa: left: 20px; y elimina right */
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  cursor: pointer;

  /* Animación de “latido / titilar” */
  animation: whatsapp-pulse 1.8s infinite;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* Efecto al pasar el mouse */
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Keyframes del brillo / latido */
@keyframes whatsapp-pulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: translateY(-4px) scale(1.07);
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


