* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #031824;
  color: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

:root {
  --bg: #031824;
  --bg2: #062739;
  --card: #ffffff;
  --cyan: #18d3df;
  --cyan2: #12b8c7;
  --text: #ffffff;
  --muted: #bdd8e4;
  --shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 20, 35, .65),
      rgba(0, 15, 28, .85));
  z-index: -1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;

  backdrop-filter: blur(10px);
  background: rgba(3, 24, 36, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 2px solid #fff;
}

.logo-text h3 {
  font-size: 19px;
  letter-spacing: 4px;
}

.logo-text span {
  font-size: 10px;
  opacity: .7;
  letter-spacing: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, var(--cyan), #1ad7aa);
  padding: 16px 28px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(20, 219, 225, .25);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
 
.hero-content {
  width: 50%;
 padding: 120px 70px 50px;
  z-index: 5;
}


.mini-title {
  color: #38d9e7;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
}

.hero h1 {
  font-size: 82px;
  line-height: 1;
  margin-top: 20px;
  font-weight: 800;
}

.script {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 90px;
  color: #1bd5e0;
  font-weight: 700;
}

.hero p {
  max-width: 520px;
  margin-top: 25px;
  color: #d4edf5;
  font-size: 23px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  margin-bottom: 42px;
  white-space: nowrap; /* Impede a quebra de linha */
}

.btn {
  padding: 22px 36px;
  border-radius: 60px;
  font-weight: 700;
  transition: .4s;
}

.primary {
  background: linear-gradient(135deg, #13d7e1, #14b9cc);
  color: #041926;
  box-shadow: 0 20px 50px rgba(0, 255, 255, .2);
}

.secondary {
  border: 2px solid rgba(255, 255, 255, .8);
  color: #dffcff;
  backdrop-filter: blur(14px);
}

.btn:hover {
  transform: translateY(-5px);
}

.features {
  margin-top: 45px;
  background: rgba(10, 43, 62, .55);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 95%;
  box-shadow: var(--shadow);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 255, 255, .12);
  border: 1px solid rgba(0, 255, 255, .25);
}

.feature-item span {
  font-size: 15px;
  font-weight: 600;
}

.hero-image {
  position: absolute;
  right: -120px;
  top: 0;
  width: 58%;
  height: 100%;
  
}

.hero-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  /* controla o foco */
  object-position: center center;
  opacity: .60;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(3,24,36,.92) 0%,
      rgba(3,24,36,.55) 20%,
      rgba(3,24,36,.15) 40%,
      transparent 100%
    );

  z-index: 1;
}

.boats-section {
  background: #fff;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  margin-top: -80px;
  position: relative;
  z-index: 20;
  padding: 60px 35px;
  color: #082132;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.section-mini {
  color: #1bcddd;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-top h2 {
  font-size: 55px;
  line-height: 1;
  margin-top: 12px;
}

.view-btn {
  padding: 18px 34px;
  border-radius: 50px;
  border: 2px solid #11cad7;
  color: #0d8e98;
  font-weight: 700;
}

.boats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.boat-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(.96);
  animation: boatFade .55s ease forwards;
}

@keyframes boatFade{
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.boat-card:hover {
  transform: translateY(-10px);
}

.people-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  padding: 10px 14px;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
}

.boat-card img {
  height: 250px;
  object-fit: cover;
}

.boat-content {
  padding: 24px;
}

.boat-content h3 {
  font-size: 20px;
  margin-bottom: 16px;
}


.price {
  margin-top: 22px;
}

.price span {
  display: block;
  color: #7d97a4;
  margin-bottom: 5px;
}

.price strong {
  color: #06bcca;
  font-size: 42px;
}

.reserve-btn {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 60px;
  background: linear-gradient(135deg, #10d6df, #11b2bf);
  color: #fff;
  font-weight: 700;
}

.stats {
  margin-top: 40px;
  background: linear-gradient(135deg, #04253a, #0a4b63);
  border-radius: 32px;
  padding: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  color: #fff;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 45px;
}

.stat span {
  opacity: .8;
  font-size: 14px;
  letter-spacing: 1px;
}

.destinations {
  background: #fff;
  padding: 20px 35px 90px;
}

.section-heading span {
  color: #15c7d7;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading h2 {
  font-size: 55px;
  color: #0b2130;
  margin-top: 14px;
  line-height: 1;
}

.section-heading strong {
  display: block;
  color: #1bcddd;
}

.destination-grid {
  margin-top: 35px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 22px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  width: 320px;
height: 500px;
}

.destination-card video {
 width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
  display: block;
  cursor: pointer;

  position:relative;
  z-index:1;

}

/* botão base */
.video-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 10;

  transition: all .25s ease;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

/* hover mais bonito */
.video-btn:hover{
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255,255,255,0.15);
}
/* ícone */
.video-btn svg{
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* animação de entrada */
.video-btn{
  animation: pop .25s ease;
}

@keyframes pop{
  from{
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }
  to{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* só o play aparece no começo */
.pause{
  display: none;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  z-index: 2;
  pointer-events: none;

  /* não usa mais gradient total */
  background: none;
}

/* camada de sombra só embaixo */
.destination-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 45%; /* controla até onde escurece */
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0)
  );

  z-index: 1;
}

/* OPCIONAL */
.boat-filters{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 20px;
}

.filter-btn.active{
  background: linear-gradient(135deg,#0ea5e9,#2563eb);
  color: #fff;
  border-color: transparent;
}

.destination-overlay h3 {
  position: relative;
  z-index: 2;
  color: #fff !important;
  font-size: 36px;
}
.cta {
  padding: 100px 35px;
  background:
    linear-gradient(rgba(2, 20, 31, .8), rgba(2, 20, 31, .9)),
    url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.cta-content {
  max-width: 850px;
}

.cta span {
  color: #22d5e2;
  font-weight: 700;
  letter-spacing: 2px;
}

.cta h2 {
  font-size: 70px;
  margin-top: 20px;
  line-height: 1;
}

.cta p {
  margin-top: 24px;
  color: #cde8f3;
  font-size: 22px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center; 
  border-radius: 60px;
  border: 2px solid rgba(255, 255, 255, .8);
  color: #dffcff;
  backdrop-filter: blur(14px);

  margin-top:22px;
  padding:16px 22px;
}

.footer{
  background:
    linear-gradient(to top,#02111b,#031824);

  padding:34px 20px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:16px;

  text-align:center;

  color:#8fa7b3;

  border-top:1px solid rgba(255,255,255,.06);

  position:relative;
  overflow:hidden;
}

.footer::before{
  content:"";

  position:absolute;

  top:-100px;
  left:50%;

  transform:translateX(-50%);

  width:320px;
  height:320px;

  background:
    radial-gradient(circle,
      rgba(24,211,223,.10),
      transparent 70%);
}

.footer div{
  position:relative;
  z-index:2;
}

.footer-socials{
  display:flex;
  align-items:center;
  gap:14px;

  flex-wrap:wrap;
  justify-content:center;
}

.footer-socials a{
  display:flex;
  align-items:center;
  gap:8px;

  padding:12px 18px;

  border-radius:50px;

  background:
    rgba(255,255,255,.05);

  border:
    1px solid rgba(255,255,255,.08);

  color:#d9edf4;

  font-size:14px;
  font-weight:600;

  transition:.35s;

  backdrop-filter:blur(10px);
}

.footer-socials a i{
  font-size:18px;
  color:#18d3df;
}

.footer-socials a:hover{
  transform:translateY(-4px);

  background:
    rgba(24,211,223,.12);

  border-color:
    rgba(24,211,223,.35);

  box-shadow:
    0 10px 30px rgba(24,211,223,.15);
}

.footer-credit{
  font-size:14px;
  color:#c7d8e0;
}

.footer-credit a{
  color:#18d3df;
  font-weight:700;

  transition:.35s;
}

.footer-credit a:hover{
  color:#4ef2ff;

  text-shadow:
    0 0 18px rgba(24,211,223,.45);
}

.menu-btn {
  width: 46px;
  height: 38px;
  background: transparent;
  border: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 10002;
  transition: 0.3s;
}

.menu-btn:hover {
  transform: scale(1.05);
}

.menu-btn span {
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background: #fff;
  transition: 0.35s ease;
}

/* animação X mais suave */
.menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 240px;

  background: rgba(3, 24, 36, 0.92);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;

  padding: 14px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.98);

  transition: 0.35s ease;

  z-index: 10001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: 0.25s;
}

.mobile-menu a:hover {
  background: rgba(24, 211, 223, 0.12);
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.info-warning {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom, #072f47, #062739);
}

.info-card {
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  color: #fff;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #18d3df;
}

.info-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.info-card .highlight {
  background: rgba(24, 211, 223, 0.1);
  border-left: 3px solid #18d3df;
  padding: 12px 15px;
  border-radius: 8px;
}

/*ícones de aniversário*/

.modal-text i{
  color:#18d3df;
  margin-right:8px;
}


@media(max-width:1100px) {

  .hero {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 80px;
  }

  .hero-content {
    width: 100%;
    padding: 140px 25px 0;
  }

  .hero-image {
    width: 100%;
    right: 0;
  }

  .hero h1 {
    font-size: 62px;
  }

  .script {
    font-size: 75px;
  }

  .boats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 52px;
  }

}

@media(max-width:700px){

  .header{
    padding:16px 14px;
  }

  .logo{
    gap:10px;
  }

  .logo img{
    width:46px;
    height:46px;
  }

  .logo-text h3{
    font-size:13px;
    letter-spacing:2px;
  }

  .logo-text span{
    font-size:7px;
    letter-spacing:1px;
  }

  .whatsapp-btn{
    display:none;
  }

  .menu-btn{
    width:42px;
    height:42px;
    display: flex;
  }

  .menu-btn span{
    width:24px;
  }

  .hero{
    min-height:750px;
  }

  .hero-content{
    padding:120px 18px 0;
  }

  .mini-title{
    font-size:13px;
  }

  .hero h1{
    font-size:42px;
    line-height:.95;
  }

  .script{
    font-size:54px;
    margin-top:2px;
  }

  .hero p{
    margin-top:18px;
    font-size:15px;
    line-height:1.5;
    max-width:100%;
  }

  .hero-buttons{
    margin-top:24px;
    gap:10px;
    flex-direction:row;
    flex-wrap:wrap;
  }

  .hero-buttons .btn{
      flex: 1;
      min-width: 140px;
      padding: 16px 12px;
      font-size: 12px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

  

.hero-buttons .btn img{
  width:22px;
  height:22px;

  object-fit:contain;

  filter:brightness(0) invert(1);

  flex-shrink:0;
}

.hero-buttons .btn span{
  display:block;
  line-height:1;
}

  .features{
  margin-top:24px;
  margin-bottom:24px;

  padding:14px;

  display:flex;
  gap:10px;

  border-radius:20px;

  overflow-x:auto;
  overflow-y:hidden;

  flex-wrap:nowrap;

  scroll-snap-type:x mandatory;

  -webkit-overflow-scrolling:touch;

  background:rgba(9,41,58,.65);

  align-items:center;
}

.features::-webkit-scrollbar{
  display:none;
}

.feature-item{
  min-width:180px;

  display:flex;
  align-items:center;

  gap:10px;

  flex-shrink:0;

  scroll-snap-align:start;
}

.icon{
  min-width:34px;
  width:34px;
  height:34px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      rgba(0,255,255,.16),
      rgba(0,255,255,.05)
    );

  border:1px solid rgba(0,255,255,.18);
}

.icon img,
.icon svg{
  width:16px;
  height:16px;

  object-fit:contain;
}

.feature-item span{
  font-size:11px;
  line-height:1.3;

  white-space:normal;
}

  .boats-section{
    padding:34px 14px;
    border-top-left-radius:26px;
    border-top-right-radius:26px;
  }

  .section-top{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    margin-bottom:22px;
  }

  .section-mini{
    font-size:11px;
  }

  .section-top h2{
    font-size:30px;
  }

  .view-btn{
    padding:12px 18px;
    font-size:12px;
  }

  .boats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .boat-card{
    border-radius:18px;
  }

  .boat-card img{
    height:120px;
  }

  .people-tag{
    top:10px;
    left:10px;
    padding:6px 10px;
    font-size:9px;
  }

  .boat-content{
    padding:12px;
  }

  .boat-content h3{
    font-size:15px;
    margin-bottom:10px;
  }

  .boat-content ul{
    gap:4px;
    font-size:10px;
  }

  .price{
    margin-top:14px;
  }

  .price span{
    font-size:10px;
  }

  .price strong{
    font-size:20px;
  }

  .reserve-btn{
    height:38px;
    margin-top:14px;
    font-size:11px;
  }

  .stats{
    margin-top:20px;
    padding:12px;
    border-radius:20px;

    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:6px;
  }

  .stat{
    min-width:0;

    padding:10px 4px;

    border-radius:14px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
  }

  .stat h3{
    font-size:14px;
    margin-bottom:4px;
    line-height:1;
  }

  .stat span{
    font-size:6px;
    line-height:1.2;
    letter-spacing:0;
    word-break:break-word;
  }

  .destinations{
    padding:0 14px 50px;
  }

  .section-heading h2{
    font-size:30px;
    margin-top:10px;
  }

  .destination-grid{
    margin-top:20px;
    gap:12px;
  }

  .destination-card{
    min-height:180px;
    border-radius:18px;
  }

  .destination-overlay{
    padding:16px;
  }

  .destination-overlay h3{
    font-size:22px;
  }

  .cta{
    padding:60px 18px;
  }

  .cta span{
    font-size:11px;
  }

  .cta h2{
    font-size:32px;
    margin-top:14px;
  }

  .cta p{
    margin-top:16px;
    font-size:14px;
    line-height:1.6;
  }

  .cta-btn{
    margin-top:22px;
    padding:16px 22px;
    font-size:13px;
  }

  .footer{
    padding:26px 14px;
    gap:12px;
  }

  .footer-socials{
    gap:10px;
  }

  .footer-socials a{
    padding:10px 14px;
    font-size:12px;
  }

  .footer-credit,
  .footer div{
    font-size:11px;
    line-height:1.5;
  }

  .info-card {
    padding: 20px;
  }

  .info-card h3 {
    font-size: 15px;
  }

  .info-card p {
    font-size: 11px;
  }


  .boat-filters{
    display:flex;
    gap:10px;

    overflow-x:auto;
    overflow-y:hidden;

    flex-wrap:nowrap;

    padding-bottom:8px;
    margin-bottom:18px;

    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .boat-filters::-webkit-scrollbar{
    display:none;
  }

  .boat-filters .filter-btn{
    flex-shrink:0;

    scroll-snap-align:start;
  }

  .filter-btn{
    white-space: nowrap;
    padding: 11px 18px;
    font-size: 13px;
  }
}