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

/* BASE */
body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
}

/* LOGO FIXO */
.logo-topo {
  position: absolute; /* pode usar fixed também, te explico abaixo */
  top: 20px;
  left: 30px;
  z-index: 999;
}

.logo-topo img {
  width: 140px; /* ajusta aqui o tamanho */
  height: auto;
}

/* ESCOPO */
.rota-ubatuba {
  width: 100%;
}

/* HERO */
.rota-ubatuba .hero-ubatuba {
  height: 100vh;
  background: url('images/ubatuba.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.rota-ubatuba .hero-ubatuba::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
}

/* HERO CONTENT */
.rota-ubatuba .hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  padding: 40px;
  border-radius: 16px;
}

.rota-ubatuba .hero-content h1 {
  font-size: 56px;
  color: var(--dourado);
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
  letter-spacing: 2px;
}

.rota-ubatuba .hero-content p {
  margin-top: 12px;
  font-size: 18px;
  opacity: 0.85;
}

/* BOTÃO */
.rota-ubatuba .btn-whatsapp {
  display: inline-block;
  margin-top: 25px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  padding: 16px 30px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.rota-ubatuba .btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
}

/* SERVIÇOS */
.rota-ubatuba .servicos-ubatuba {
  padding: 80px 20px;
  text-align: center;
}

.rota-ubatuba .servicos-ubatuba h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--dourado);
  letter-spacing: 1px;
}

.rota-ubatuba .servicos-ubatuba p {
  opacity: 0.7;
  margin-bottom: 5px;
}

/* GRID */
.rota-ubatuba .grid-servicos {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* CARD SERVIÇO */
.rota-ubatuba .box-servico {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  width: 240px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.5;
}

/* LINHA ANIMADA */
.rota-ubatuba .box-servico::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.rota-ubatuba .box-servico:hover::before {
  left: 100%;
}

/* HOVER */
.rota-ubatuba .box-servico:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* ROTEIROS */
.rota-ubatuba .roteiros-ubatuba {
  padding: 80px 20px;
  text-align: center;
}

.rota-ubatuba .grid-roteiros {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.rota-ubatuba .roteiro-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 16px;
  width: 260px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.rota-ubatuba .roteiro-card.destaque {
  background: linear-gradient(135deg, #0a9396, #005f73);
  box-shadow: 0 0 30px rgba(10,147,150,0.5);
}

.rota-ubatuba .roteiro-card:hover {
  transform: translateY(-10px);
}

/* DEPOIMENTOS */
.rota-ubatuba .depoimentos-ubatuba {
  padding: 80px 20px;
  text-align: center;
}

.rota-ubatuba .grid-depoimentos {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.rota-ubatuba .dep-box {
  background: rgba(255,255,255,0.04);
  padding: 25px;
  border-radius: 16px;
  width: 260px;
  border-left: 3px solid var(--dourado);
  transition: 0.3s;
}

.rota-ubatuba .dep-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.rota-ubatuba .cta-ubatuba {
  position: relative;
  padding: 120px 20px;
  text-align: center;

  background: url('images/rota-ubatuba/mar.webp') center/cover no-repeat;
  overflow: hidden;
}

/* overlay escuro pra dar contraste */
.rota-ubatuba .cta-ubatuba::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

/* garantir que o conteúdo fique acima */
.rota-ubatuba .cta-ubatuba h2,
.rota-ubatuba .cta-ubatuba p,
.rota-ubatuba .cta-ubatuba a {
  position: relative;
  z-index: 2;
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .rota-ubatuba .hero-content h1 {
    font-size: 32px;
  }

  .rota-ubatuba .hero-content p {
    font-size: 14px;
  }

  .rota-ubatuba .box-servico {
    width: 100%;
  }

}

.barcos-ubatuba {
  padding: 80px 20px;
  text-align: center;
}

.grid-barcos {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.card-barco {
  position: relative;
  width: 280px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.card-barco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.info-escuna {
  width: 100%;
  display: block;
  margin: 40px 0 20px;
  text-align: center;
  font-size: 18px;
   
}

/* overlay escuro elegante */
.card-barco .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
}

/* efeito hover */
.card-barco:hover img {
  transform: scale(1.1);
}

/* CARROS */
.carros-ubatuba {
  padding: 80px 20px;
  text-align: center;
}

.carros-ubatuba h2 {
  font-size: 32px;
  color: var(--dourado);
}

.carros-ubatuba p {
  opacity: 0.7;
  margin-top: 5px;
}

/* CARROSSEL */
.carrossel-carros {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.track-carros {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* CARD */
.card-carro {
  min-width: 380px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.card-carro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.card-carro:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.card-carro .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* BOTÕES */
.btn-carrossel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.btn-carrossel.prev {
  left: 10px;
}

.btn-carrossel.next {
  right: 10px;
}

.btn-carrossel:hover {
  background: var(--dourado);
  color: black;
}

/* BOTÃO FIRST CLASS */

.firstclass-cta {
  padding: 80px 20px;
  text-align: center;
  background: #000;
}

.firstclass-cta h3 {
  font-size: 26px;
  color: var(--dourado);
  margin-bottom: 10px;
}

.firstclass-cta p {
  opacity: 0.7;
  margin-bottom: 30px;
}

/* BOTÃO SÓ COM LOGO */
.btn-firstclass {
  display: inline-block;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.3);
  transition: 0.3s;
  backdrop-filter: blur(8px);
}

.btn-firstclass img {
  width: 160px; /* controla o tamanho do logo */
  height: auto;
  display: block;
}

/* HOVER TOP */
.btn-firstclass:hover {
  transform: scale(1.08);
  border-color: var(--dourado);
  box-shadow: 0 0 30px rgba(212,175,55,0.5);
}

/* ASSINATURA */
.assinatura-dev.minimal {
  text-align: center;
  padding: 20px 10px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1); /* se fundo for escuro */
}

.assinatura-dev.minimal p {
  margin: 0;
}

.assinatura-dev.minimal strong {
  color: #fff; /* destaque no nome */
  font-weight: 600;
}

.assinatura-dev.minimal a {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
  transition: 0.3s;
}

.assinatura-dev.minimal a:hover {
  color: #1ebe5d;
  text-decoration: underline;
}
