* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  position: relative;
  background: url("https://st3.depositphotos.com/1589661/16568/v/450/depositphotos_165686394-stock-illustration-portuguese-vector-tiles-pattern-lisbon.jpg");
}

/* camada por cima */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(255, 255, 255, 0.67); /* controla aqui a intensidade */

  z-index: -1;
}

/* HEADER */
.hero {
  min-height: 55vh;
  background: url("https://t3.ftcdn.net/jpg/02/11/25/82/360_F_211258268_kRNGHnYeZK6DMFzErSz23LvOdGBUk46L.jpg") center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
  backdrop-filter: blur(3px);
}

/* NAVBAR */
.navbar {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu li {
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.menu li:hover {
  color: #ffcc00;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  max-width: 750px;
}

.subtitle {
  margin: 12px 0 20px;
  font-size: 1.2rem;
  opacity: .9;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #ffcc00;
  color: #222;
}

.primary:hover {
  background: #ffb700;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.secondary:hover {
  background: white;
  color: #222;
}

/* TAGS */
.hero-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-titles span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .9rem;
  backdrop-filter: blur(6px);
}

/* CONTEÚDO */
.container {
  max-width: 1100px;
  margin: 40px auto 60px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
}

.box {
  background: white;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* GUIA */
.guia img {
  width: 100%;
  border-radius: 12px;
}

/* APRESENTAÇÃO */
.apresentacao h2 {
  margin-bottom: 12px;
}

/* REVIEWS */
.reviews {
  grid-column: span 2;
  overflow: hidden;
}

.reviews-slider {
  display: flex;
  transition: transform 0.6s ease;
}

.review {
  min-width: 100%;
  padding: 15px;
  font-style: italic;
  text-align: center;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .reviews {
    grid-column: span 1;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .menu {
    display: none;
  }
}
/* TOURS SLIDER BAR */
.tours-bar {
  grid-column: span 2;
  background: white;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.tours-slider {
  display: flex;
  gap: 20px;
  animation: slideTours 20s infinite linear;
}

@keyframes slideTours {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tour-slide {
  min-width: 300px;
  background: #f8f8f8;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.5s;
}
 
.tour-slide:hover {
  transform: translateY(-6px);
}

.tour-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* INFO */
.tour-info {
  padding: 15px;
  text-align: center;
}

.tour-info h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.price {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffb700;
  margin-bottom: 8px;
}

/* BADGES DIAGONAIS */
.badge {
  position: absolute;
  top: 18px;
  right: -45px;
  transform: rotate(45deg);
  width: 160px;
  text-align: center;
  padding: 6px 0;
  font-size: .75rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: white;
  z-index: 5;
}

.popular { background: linear-gradient(45deg,#ff9800,#ff5722); }
.best { background: linear-gradient(45deg,#4caf50,#2e7d32); }
.premium { background: linear-gradient(45deg,#3f51b5,#1a237e); }

/* MOBILE */
@media (max-width: 900px) {
  .tours-bar {
    grid-column: span 1;
  }

  .tours-slider {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slideTours 18s linear infinite;
}
}
/* WHATSAPP FLOAT */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* MAPA */
.map-section {
  margin: 60px auto;
  max-width: 1100px;
  background: white;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  border: none;
  margin-top: 15px;
}

/* CONTACTOS */
.contact-section {
  margin: 60px auto;
  max-width: 1100px;
  background: white;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  padding: 14px;
  background: #ffcc00;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffb700;
}
.menu li a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.menu li a:hover {
  color: #ffcc00;
}
/* DIVISOR TRANSPARENTE */

.divider-glass{
  width:100%;
  height:25px;
  display:flex;
  justify-content:center;
  align-items:center;

  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-top:1px solid rgba(255,255,255,0.4);
  border-bottom:1px solid rgba(255,255,255,0.2);
}

.divider-line{
  width:120px;
  height:3px;
  background:#ffcc00;
  border-radius:10px;
}

/* imagem com zoom */
.tour-media{
  overflow:hidden;
}

.tour-media img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
  transform: scale(1);
  transition: transform .45s ease;
}

.tour-card:hover .tour-media img{
  transform: scale(1.06);
}

/* conteúdo */
.tour-content{
  padding:20px 22px 22px;
}

.tour-content h2{
  margin-bottom:8px;
  font-size:1.25rem;
}

.tour-price{
  font-size:1.35rem;
  font-weight:800;
  color:#ffb700;
  margin-bottom:10px;
}

.tour-content p{
  opacity:.9;
  line-height:1.6;
  margin-bottom:10px;
}

.tour-content ul{
  padding-left:18px;
  line-height:1.85;
  margin-top:8px;
  margin-bottom:16px;
}

/* botões */
.tour-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.tour-actions .btn{
  padding:10px 18px;
  border-radius:999px;
  font-size:.95rem;
}

/* responsivo */
@media (max-width: 900px){
  .tours-container{
    grid-template-columns: 1fr;
  }
  .tour-media img{
    height:210px;
  }
}

/* camada da borda */

/* ===== FOOTER + REDES SOCIAIS ===== */

.site-footer{
  margin-top: 70px;
  background: rgba(0,0,0,0.78);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 30px;
}

.footer-logo{
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.site-footer h3{
  font-size: 1rem;
  margin-bottom: 12px;
  color: white;
}

.footer-text{
  opacity: .9;
  line-height: 1.7;
}

.socials{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.social:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,204,0,0.55);
}

.social svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: .95;
  flex: 0 0 auto;
}

.social span{
  font-size: .95rem;
  font-weight: 600;
  opacity: .95;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 20px;
  text-align: center;
  opacity: .85;
}

/* responsivo */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .socials{
    grid-template-columns: 1fr;
  }
}
/* LOGIN */

.login-container{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

.login-box{
  background:white;
  padding:40px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.1);

  display:flex;
  flex-direction:column;
  gap:15px;

  width:300px;
}

.login-box input{
  padding:12px;
  border-radius:8px;
  border:1px solid #ccc;
}

.login-box button{
  padding:12px;
  border:none;
  border-radius:20px;
  background:#ffcc00;
  font-weight:bold;
  cursor:pointer;
}
.login-box a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.login-box a:hover {
  color: #ffb700;
}
.login-container{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.login-box{
  background:white;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  display:flex;
  flex-direction:column;
  gap:15px;
  width:100%;
  max-width:380px;
}

.login-box input{
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #ccc;
  font-size:1rem;
}

.login-box button{
  padding:12px;
  border:none;
  border-radius:30px;
  background:#ffcc00;
  font-weight:bold;
  cursor:pointer;
  transition:.3s;
}

.login-box button:hover{
  background:#ffb700;
}

.login-box a{
  color:#333;
  text-decoration:none;
  font-weight:600;
}

.login-box a:hover{
  color:#ffb700;
}
.tours-container{
  max-width:1100px;
  margin:50px auto 80px;
  padding:20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.tour-card{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:590px;
  display:flex;
  flex-direction:column;
  position:relative;
  border:1.5px solid transparent;
}

.tour-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(0,0,0,.10);
  border:1.5px solid rgba(255, 226, 120, 0.75);
}

/* imagem */
.tour-media{
  overflow:hidden;
  flex:0 0 auto;
}

.tour-media img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .45s ease;
}

.tour-card:hover .tour-media img{
  transform:scale(1.06);
}

/* conteúdo geral */
.tour-content{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
  padding:20px 22px 22px;
}

/* texto que faz scroll */
.tour-text{
  flex:1;
  min-height:0;
  overflow-y:auto;
  padding-right:8px;
  scrollbar-width:thin;
  scrollbar-color:rgba(0,0,0,.55) transparent;
}

.tour-text h2{
  margin-bottom:8px;
  font-size:1.25rem;
  line-height:1.2;
}

.tour-price{
  font-size:1.15rem;
  font-weight:800;
  color:#f0a800;
  margin-bottom:10px;
  line-height:1.35;
}

.tour-text p{
  opacity:.92;
  line-height:1.6;
  margin-bottom:10px;
}

.tour-text ul{
  padding-left:18px;
  line-height:1.75;
  margin-top:8px;
  margin-bottom:6px;
}

.tour-text li{
  margin-bottom:4px;
}

/* botões sempre em baixo */
.tour-actions{
  margin-top:auto;
  padding-top:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.tour-actions .btn{
  padding:10px 18px;
  border-radius:999px;
  font-size:.95rem;
}

/* scrollbar preta moderna */
.tour-text::-webkit-scrollbar{
  width:8px;
}

.tour-text::-webkit-scrollbar-track{
  background:transparent;
}

.tour-text::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.55);
  border-radius:999px;
}

.tour-text::-webkit-scrollbar-thumb:hover{
  background:rgba(0,0,0,.78);
}

/* responsivo */
@media (max-width:900px){
  .tours-container{
    grid-template-columns:1fr;
  }

  .tour-card{
    height:540px;
  }

  .tour-media img{
    height:200px;
  }
}
/* ===== TOURS FINAL ===== */

.tours-container{
  max-width:1100px;
  margin:50px auto 80px;
  padding:20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.tour-card{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:590px;
  display:flex;
  flex-direction:column;
  position:relative;
  border:1.5px solid transparent;
}

.tour-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(0,0,0,.10);
  border:2.5px solid rgba(255, 226, 120, 0.75);
}
/* imagem */
.tour-media{
  overflow:hidden;
  flex:0 0 auto;
}

.tour-media img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .45s ease;
}

.tour-card:hover .tour-media img{
  transform:scale(1.06);
}

/* conteúdo */
.tour-content{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
  padding:20px 22px 22px;
}

/* zona com scroll */
.tour-text{
  flex:1;
  min-height:0;
  overflow-y:auto;
  padding-right:8px;
  scrollbar-width:thin;
  scrollbar-color:rgba(0,0,0,.55) transparent;
}

.tour-text h2{
  margin-bottom:8px;
  font-size:1.25rem;
  line-height:1.2;
}

.tour-price{
  font-size:1.15rem;
  font-weight:800;
  color:#f0a800;
  margin-bottom:10px;
  line-height:1.35;
}

.tour-text p{
  opacity:.92;
  line-height:1.6;
  margin-bottom:10px;
}

.tour-text ul{
  padding-left:18px;
  line-height:1.75;
  margin-top:8px;
  margin-bottom:6px;
}

.tour-text li{
  margin-bottom:4px;
}

/* botões fixos em baixo */
.tour-actions{
  margin-top:auto;
  padding-top:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.tour-actions .btn{
  padding:10px 18px;
  border-radius:999px;
  font-size:.95rem;
}

/* scrollbar preta moderna */
.tour-text::-webkit-scrollbar{
  width:8px;
}

.tour-text::-webkit-scrollbar-track{
  background:transparent;
}

.tour-text::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.55);
  border-radius:999px;
}

.tour-text::-webkit-scrollbar-thumb:hover{
  background:rgba(0,0,0,.78);
}

/* responsivo */
@media (max-width:900px){
  .tours-container{
    grid-template-columns:1fr;
  }

  .tour-card{
    height:560px;
  }

  .tour-media img{
    height:200px;
  }
}