/* LOAD DESIGN SYSTEM */
@import url("base.css");
@import url("components.css");

/* Future pages */
@import url("pages/home.css");


/* ===== VARIABLES ===== */
    :root {
      --teal:       #00C4B4;
      --teal-dark:  #009E90;
      --orange:     #FFA500;
      --dark:       #1a1a2e;
      --text-muted: #6c757d;
    }

    * { box-sizing: border-box; }
    body { 
  font-family: 'Inter', sans-serif; 
  overflow-x: hidden;
  font-size: 15px;
}
body {
    background-color: #ffffff;
    background-image: url("../images/bg/marine-bg.png");
    background-repeat: repeat;
    background-size: 1420px;
    object-fit: cover;
}

a { text-decoration: none; }



/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff; /* pode trocar pela cor da tua marca */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lottie-loader {
  width: 200px;
  height: 200px;
}




    /* ===== NAVBAR ===== */
    .navbar {
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,.08);
      padding-top: 0;
      padding-bottom: 0;
      min-height: 72px;
    }
    .navbar-brand {
      padding: 6px 0;
      flex-shrink: 0;
    }
    /* Nav links */
    .nav-link {
      font-weight: 500;
      font-size: .93rem;
      color: #333 !important;
      padding: 8px 14px !important;
      border-radius: 4px;
      transition: color .2s, background .2s;
      white-space: nowrap;
    }
    .nav-link:hover,
    .nav-link.active {
      color: var(--teal) !important;
      background: rgba(0,196,180,.07);
    }



    /*logo*/
    .navbar-brand{
        width: 64px;
    }
    .navbar-brand .nav-logo img{
        width: 100%;
    }
    /* Active underline accent */
    .nav-link.active {
      position: relative;
    }
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 14px;
      right: 14px;
      height: 2px;
      background: var(--teal);
      border-radius: 2px;
    }
    /* Contact block */
    .nav-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      color: var(--teal);
      white-space: nowrap;
      border-left: 1px solid #eee;
      padding-left: 20px;
      margin-left: 8px;
    }
    .nav-contact .phone-icon {
      width: 38px;
      height: 38px;
      background: var(--teal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav-contact .phone-icon i {
      font-size: 1rem;
      color: #fff;
    }
    .nav-contact .phone-label {
      font-size: .68rem;
      color: #aaa;
      font-weight: 400;
      display: block;
      line-height: 1;
      margin-bottom: 2px;
    }
    .nav-contact .phone-number {
      font-size: .9rem;
      color: var(--teal);
      font-weight: 700;
      line-height: 1;
    }
    /* Toggler */
    .navbar-toggler {
      border: none;
      padding: 6px 8px;
    }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    /* Mobile collapsed styles */
    @media (max-width: 991.98px) {
      .nav-contact {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        margin-left: 0;
        padding-top: 14px;
        margin-top: 6px;
      }
    }

    /* ===== HERO / CAROUSEL ===== */
    #heroCarousel { position: relative; }
    .hero-slide {
      height: 90vh;
      min-height: 520px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-content {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    /* ---------- PLACEHOLDER IMAGE BOX (hero) ---------- */
    .img-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: #555; gap: 10px;
    }
    .img-placeholder i { font-size: 3rem; color: var(--teal); }
    .img-placeholder span { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
    
    .hero-image{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    /* teal overlay on hero */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  /* Gradiente de baixo para cima */
  background: linear-gradient(
    to top,
    rgba(0, 80, 75, 1) 0%,     /* base: mais escuro */
    rgba(0, 120, 115, 0.8) 50%,  /* meio: 50% de opacidade */
    rgba(0, 150, 140, 0) 100%    /* topo: totalmente transparente */
  );
}
    .hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 1rem; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--orange); color: #fff;
      padding: 6px 18px; border-radius: 20px; font-size: .85rem; font-weight: 600;
      margin-bottom: 1rem;
    }
    .hero-title { font-family: 'Dancing Script', cursive; font-size: clamp(2.4rem, 6vw, 4.5rem); margin-bottom: .5rem; }
    .hero-sub { font-size: 1rem; font-weight: 300; opacity: .9; margin-bottom: 2rem; }
    .btn-hero-outline {
      border: 2px solid #fff; color: #fff; background: transparent;
      padding: 10px 28px; border-radius: 4px; font-weight: 600; font-size: .9rem;
      transition: .25s;
    }
    .btn-hero-outline:hover { background: #fff; color: var(--teal); }
    .btn-hero-solid {
      background: transparent; border: 2px solid #fff; color: #fff;
      padding: 10px 28px; border-radius: 4px; font-weight: 600; font-size: .9rem;
      transition: .25s;
    }
    .btn-hero-solid:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

    /* Carousel indicators custom */
    .carousel-indicators [data-bs-target] {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(255,255,255,.5); border: none;
    }
    .carousel-indicators .active { background: #fff; }

    /* ===== SECTION LABEL (orange pill) ===== */
    .section-label {
      display: inline-block;
      background: var(--orange); color: #fff;
      font-family: 'Dancing Script', cursive; font-size: 1.1rem;
      padding: 3px 20px; border-radius: 20px; margin-bottom: 1rem;
    }
    section {
  scroll-margin-top: 100px;
}

.package-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.btn-reserve,
.btn-teal,
.btn-more {
  transition: 0.3s ease;
}

.btn-reserve:hover,
.btn-teal:hover,
.btn-more:hover {
  transform: scale(1.05);
}

    /* ===== ABOUT ===== */
    #about { padding: 80px 0; }
    .about-title { font-size: 2rem; font-weight: 700; }
    .about-title span { color: var(--teal); }
    .mission-label { color: var(--teal); font-weight: 600; }
    .mission-label i { margin-right: 6px; }
    .btn-teal {
      background: var(--teal); color: #fff; border: none;
      padding: 10px 28px; border-radius: 4px; font-weight: 600;
      transition: .2s;
    }
    .btn-teal:hover { background: var(--teal-dark); color: #fff; }

    /* About image grid */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 380px; }
    .about-grid .img-box { border-radius: 8px; overflow: hidden; }
    .about-grid .img-box.tall { grid-row: span 2; }

    /* Generic image box (square / rectangle) */
    .img-box-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: #555; gap: 8px; border-radius: 8px;
    }

    .about-img{
        object-fit: cover;
        width: 100%;
    }
    .img-box-placeholder i { font-size: 2rem; color: var(--teal); }
    .img-box-placeholder span { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; text-align: center; padding: 0 8px; }

    /* ===== PACKAGES ===== */
    #packages { background: var(--teal); padding: 80px 0; }
    #packages .section-label { background: var(--orange); }
    #packages h2 { color: #fff; font-size: 2rem; font-weight: 700; }
    #packages .sub { color: rgba(255,255,255,.85); margin-bottom: 2rem; }

    .package-card {
      background: #fff; border-radius: 12px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.12);
    }
    .package-card .card-img-area {
      height: 200px; position: relative; overflow: hidden;
    }
    .package-badge {
      position: absolute; top: 12px; left: -4px; z-index: 2;
      background: var(--teal); color: #fff;
      font-size: .72rem; font-weight: 700; padding: 4px 14px 4px 10px;
      clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
    }
    .package-badge.popular { background: var(--orange); }
    .package-card .card-body { padding: 16px; }
    .stars { color: var(--orange); font-size: .85rem; }
    .package-card h5 { font-size: .95rem; font-weight: 700; margin: 8px 0 6px; }
    .package-meta { font-size: .75rem; color: var(--text-muted); display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
    .package-meta span { display: flex; align-items: center; gap: 4px; }
    .package-desc { font-size: .78rem; color: #555; margin-bottom: 10px; }
    .package-price { font-size: .78rem; }
    .package-price .label { color: #888; }
    .package-price .amount { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
    .package-price .old { text-decoration: line-through; color: #aaa; font-size: .8rem; }
    .package-price .tax { font-size: .7rem; color: #aaa; display: block; }
    .btn-reserve {
      background: var(--teal); color: #fff; border: none;
      padding: 8px 18px; border-radius: 6px; font-size: .82rem; font-weight: 600;
      display: inline-flex; align-items: center; gap: 6px; transition: .2s;
    }
    .btn-reserve:hover { background: var(--teal-dark); color: #fff; }
    .nav-pkg-btn {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,.25); color: #fff; border: 2px solid rgba(255,255,255,.5);
      display: flex; align-items: center; justify-content: center; cursor: pointer;
      transition: .2s;
    }
    .nav-pkg-btn:hover { background: #fff; color: var(--teal); }
    .btn-more {
      background: transparent; border: 2px solid #fff; color: #fff;
      padding: 10px 32px; border-radius: 6px; font-weight: 600; font-size: .9rem;
      transition: .2s;
    }
    .btn-more:hover { background: #fff; color: var(--teal); }

    /* ===== FEEDBACK ===== */
    #feedback { padding: 80px 0; }
    #feedback h2 { font-size: 2rem; font-weight: 700; }
    .feedback-img-area {
      border-radius: 12px; overflow: hidden; height: 380px; position: relative;
    }
    .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 150, 140, 0.9);
  
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 120, 115, 1);
}
    .review-card {
      background: var(--teal); border-radius: 12px; color: #fff; padding: 28px;
      position: relative;
    }
    .quote-icon { font-size: 2rem; margin-bottom: 12px; opacity: .8; }
    .review-text { font-size: .9rem; font-style: italic; line-height: 1.7; margin-bottom: 16px; }
    .stars-review { color: var(--orange); margin-bottom: 4px; }
    .google-link { color: rgba(255,255,255,.75); font-size: .78rem; text-decoration: underline; }
    .reviewer { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
    .reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,.4); }
    .reviewer-name { font-weight: 700; font-size: .9rem; }
    .reviewer-role { font-size: .75rem; opacity: .75; }
    .review-nav { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
    .review-nav .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); }
    .review-nav .dot.active { background: #fff; }
    .review-nav-btn {
      background: rgba(255,255,255,.25); border: none; color: #fff;
      width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: .8rem;
    }
    .platform-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
    .platform-badge {
      padding: 8px 18px; border-radius: 6px; font-weight: 700; font-size: .85rem;
      display: flex; align-items: center; gap: 6px; cursor: pointer;
    }
    .platform-badge.viator { background: #fff; color: var(--teal); }
    .platform-badge.tripadvisor { background: #fff; color: #34a853; }
    .platform-badge.gyg { background: #ff6020; color: #fff; }

    /* ===== FOOTER ===== */
    footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 24px 0; font-size: .85rem; text-align: center; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 767px) {
      .about-grid { height: 280px; }
      .hero-slide { height: 70vh; }
    }