/* ======================================================
   HERO SECTION
====================================================== */

.hero-header {
    position: relative;
    background:
      linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
      url("/assets/images/imgtop.webp") center / cover no-repeat;
      height: 300px;
 
  }
  .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
  }

.hero-header img.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    inset: 0;
    z-index: 1;
}

.hero-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-header .hero-content {
    position: relative;
    z-index: 4; /* cima de tudo */
}

/* ======= ONDA ======= */
.hero-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;

    background: url("assets/images/wave.svg") no-repeat bottom;
    background-size: 100% 100%;

    z-index: 3; /* ENTRE overlay e conteúdo */
    pointer-events: none;
}


/* Conteúdo */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 20px;
    width: 90%;
}

/* Logo */
.hero-logo {
    width: 140px;
    margin-bottom: 20px;
}

/* Títulos */
.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 12px 0 30px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

/* Botões */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-1, 
.btn-2 {
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

/* Botão WhatsApp */
.btn-1 {
    background: #29de23;
    color: #36363a;
}

.btn-1:hover {
    background: #e0ac06;
}

/* Botão secundário */
.btn-2 {
    background: rgba(255,255,255,0.15);
    border: 2px solid #fff;
    color: #fff;
}

.btn-2:hover {
    background: rgba(255,255,255,0.3);
}

/* ======================================================
   CARDS DE BENEFÍCIOS
====================================================== */

.card-animado {
    background: linear-gradient(to bottom, #ffffff, #b5eef9);
    transition: all .35s ease;
    border-radius: 14px;
    transform: translateY(0);
}

.card-animado:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.25);
    border-color: #0dcaf0;
}

/* Ícones */
.icon {
    font-size: 3em;
    margin: 15px 0;
}

/* ======================================================
   CARD DE DESTINOS
====================================================== */

.tour-card {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 26px rgba(0,0,0,0.12);
    transition: .3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Imagem */
.tour-card-img {
    position: relative;
}

.tour-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Título na imagem */
.tour-card-title {
    position: absolute;
    bottom: 12px;
    left: 16px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* Corpo */
.tour-card-body {
    padding: 20px;
}

.tour-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 18px;
}

/* CTA */
.tour-cta {
    font-size: 1.5em;
    font-weight: 800;
    color: #045e70;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Botão pulsando CTA */
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(13, 110, 253, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(13, 110, 253, 0.4);
    }
}

.reserve-btn {
    animation: pulse-glow 1.8s infinite ease-in-out;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(to bottom, rgb(47, 159, 233), rgb(25, 72, 241));
}

/* ======================================================
   ANIMAÇÕES
====================================================== */

@keyframes fadeIn { to { opacity: 1; } }

.animate-fade {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-up,
.animate-up-delay,
.animate-up-delay2 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1.5s forwards;
}

.animate-up { animation-delay: .3s; }
.animate-up-delay { animation-delay: .6s; }
.animate-up-delay2 { animation-delay: .9s; }

/* Botão pulsando do herói */
@keyframes pulseEffect {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 193, 7, 0.7);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 18px rgba(255, 193, 7, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 193, 7, 0.7);
    }
}

.pulse {
    animation: pulseEffect 1.6s infinite ease-in-out;
}

/* ======================================================
   RESPONSIVIDADE
====================================================== */

@media (max-width: 768px) {
    .hero-logo { width: 110px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn-1, .btn-2 { padding: 12px 20px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-header { height: 85vh; }
    .hero-logo { width: 90px; }
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: .9rem; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .btn-1, .btn-2 { width: 100%; }
}

.top-bar-desconto {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(90deg, #68c2d8, #05578a);
    color: #000;
    font-weight: 800;
    font-size: 1.05rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    letter-spacing: .5px;
    animation: pulseFaixa 2.5s infinite ease-in-out;
}

/* Suave efeito de destaque */
@keyframes pulseFaixa {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cf_number{
    font-size: 1.5em;
    font-weight:bold;
    color:#f0e4e4;
    background-color:#5abdfb;
    padding: 3% 4%;
    border-radius: 50%;
}
h3{
    font-size: 4em;
    font-weight: bolder;
    color: #e0ac06;
}


/* ======================================================
   GALERIA DE VIAGENS
====================================================== */

.gallery-section {
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ===== LIGHTBOX ===== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 92%;
    max-height: 90vh;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(255,255,255,0.25);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}


/* ======================================================
   AVALIAÇÕES DE CLIENTES
====================================================== */

.reviews-section {
    padding: 30px 15px 60px;
    background: linear-gradient(to bottom, #ccff00, #c3fc73);
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.review-card {
    display: none;
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    text-align: center;
    transition: opacity .4s ease, transform .4s ease;
}

.review-card.active {
    display: block;
    animation: fadeReview .5s ease;
}

@keyframes fadeReview {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 22px;
}

.review-author strong {
    display: block;
    font-size: 1.1rem;
    color: #05578a;
}

.review-author span {
    font-size: .9rem;
    color: #777;
}

.stars {
    margin-top: 8px;
    color: #f4c430;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Controles */
.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.review-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #2509da;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: .3s ease;
}

.review-btn:hover {
    background: #1a99e8;
}

/* CTA */
.reviews-cta a {
    border-radius: 30px;
    padding: 10px 22px;
}

/* ======================================================
   SEÇÃO DE PASSEIOS
====================================================== */

.passeios-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #6060fa, #b6b6f1);
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    color: #f7fafa;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

.passeios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-decoration:   none ;
}

a{text-decoration: none;}

.footer-premium {
    text-align: center;
  }
  
  .footer-social {
    display: flex;
    justify-content: center;
  }
  
  .footer-links {
    padding-left: 0;
  }
  
  .footer-links li {
    list-style: none;
    text-decoration: none;
    color: #000;
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .footer-cta {
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 991px) {
    .d-flex {
      flex-wrap: wrap;
    }
  
    .d-flex > * {
      width: 100%;
      max-width: 100%;
    }
  }


@media (min-width: 768px) {
    .hero-header {height: 450px;   }
    .tour-card {
        display: flex;
        flex-direction: column;
      }
      
      .tour-card-body {
        display: flex;
        flex-direction: column;
        flex: 1;
      }
      
      .tour-cta {
        margin-top: auto;
      }
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }
      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
      }
      .wave{
        display: none;
      }
  }

  @media (min-width: 768px) {

    #destinos .row {
        padding: 0;
        display: flex;
        flex-wrap: nowrap; /* tudo em uma linha */
      }
      
      #destinos .col-12 {
        flex: 1;           /* todos com mesmo tamanho */
        max-width: 100%;
      }
   
 
  }