.servicos--wrap { flex-wrap: wrap; gap: 1.5rem; }
.hero--bg-noronha {
  background-image: url('https://th.bing.com/th/id/OIP.bw6zuJPLDS0O6x05kxDfUAHaE7?o=7rm=3&rs=1&pid=ImgDetMain&o=7&rm=3');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero--bg-familia {
  background-image: url('https://descomplicandoviagens.com.br/wp-content/uploads/2023/11/viagens-em-familia-53aa.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero--bg-florianopolis {
  background-image: url('https://media.istockphoto.com/id/1421636242/photo/may-05-2022-florianopolis-brazil-aerial-view-of-florianopolis-downtown-urban-road-view-and.jpg?s=612x612&w=0&k=20&c=A2Y06BxPx5vSPeWdc5wp6yF4zkYwflHpUJugVxPXYcc=');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero--bg-gramado {
  background-image: url('https://d18m3re1tsq8hv.cloudfront.net/wp-content/uploads/2019/07/gramado-02.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero--bg-grecia {
  background-image: url('https://www.eurodicas.com.br/wp-content/uploads/2018/06/tudo-sobre-a-grecia-1.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero--bg-ibiza {
  background-image: url('https://a.travel-assets.com/findyours-php/viewfinder/images/res70/340000/340805-Ibiza-Island.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero--bg-jericoacoara {
  background-image: url('https://jericoacoara.com.ar/wp-content/uploads/2022/07/Jericoacoara04.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero--bg-arraial {
  background-image: url('https://a.cdn-hotels.com/gdcs/production51/d317/69126537-8bce-4218-adb1-594ac7d9c4b2.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero--bg-balneario {
  background-image: url('https://dsdsuzy1jtjfw.cloudfront.net/wp-content/uploads/2016/08/shutterstock_1628056810-scaled.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
/*
  Viagens Brasil 2.0 - CSS Principal
  Cores: #012a4a (azul escuro), #007BFF (azul vibrante), #f4f4f4 (cinza claro), #d4af37 (dourado), branco
  Fonte: Montserrat (Google Fonts)
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
:root {
  --azul-escuro: #012a4a;
  --azul: #0050a7;
  --cinza-claro: #f4f4f4;
  --dourado: #d4af37;
  --branco: #fff;
  --fonte: 'Montserrat', Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--fonte);
  background: var(--cinza-claro);
  color: var(--azul-escuro);
  min-height: 100vh;
}
a { color: var(--azul); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dourado); }
img { max-width: 100%; display: flex; border-radius: 10px;}

.FotoGramado{
  width: 470px;
}
.FotoIbiza{
 width: 470px;
}


/* Header fixo */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(1,42,74,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  transition: background .3s;
}
header.scrolled { background: var(--azul-escuro); }
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 1rem 2rem;
}
.logo {
  height: 48px; width: auto;
}
nav ul {
  display: flex; gap: 2rem;
  list-style: none;
}
nav ul li a {
  font-weight: 600; font-size: 1rem; letter-spacing: .5px;
  padding: .5rem 1rem; border-radius: 4px;
  transition: background .2s, color .2s;
}
nav ul li a.active, nav ul li a:hover {
  background: var(--azul); color: var(--branco);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  width: 28px; height: 3px; background: var(--branco); border-radius: 2px;
  transition: all .3s;
}

/* Hero Section */
.hero {
  height: 80vh; min-height: 400px;
  background: url('https://source.unsplash.com/1200x600/?travel') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-bottom: 2rem;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(1,42,74,0.5);
}
.hero-content {
  position: relative; z-index: 1;
  color: var(--branco);
  text-align: center;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 2.5rem; font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInDown 1s;
}
.hero-content p {
  font-size: 1.2rem; margin-bottom: 2rem;
  animation: fadeInUp 1.2s;
}
.hero-content .cta {
  background: var(--dourado); color: var(--azul-escuro);
  font-weight: 700; padding: 1rem 2.5rem; border-radius: 30px;
  font-size: 1.1rem; border: none; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background .2s, color .2s, transform .2s;
}
.hero-content .cta:hover {
  background: var(--azul); color: var(--branco); transform: translateY(-2px) scale(1.04);
}
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px);} to { opacity: 1; transform: none; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: none; } }

/* Seções principais */
section { padding: 4rem 0 0 0; }
.container { max-width: 1200px; 
  margin: 0 auto;
  padding: 0 2rem;  }
.section-title {
  font-size: 2rem; 
  font-weight: 700; 
  color: var(--azul-escuro);
  margin-bottom: 2rem; 
  text-align: center;
}

/* Sobre nós resumido */
.sobre-resumido {
  display: flex; 
 text-align: center; 
 gap: 2rem; 
 justify-content: center;
  background: var(--branco); 
  border-radius: 16px; 
  box-shadow: 0 2px 16px rgba(1,42,74,0.06);
  padding: 2rem; 
  max-width: 900px; 
  margin: 0 auto 2rem;
}
.sobre-resumido .icon {
  font-size: 2.5rem; color: var(--azul);
  margin-right: 1.5rem;
}
.sobre-resumido p { font-size: 1.1rem; }
.sobre-resumido a { font-weight: 600; color: var(--azul); margin-left: 1rem; }

/* Serviços */
.servicos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem;
  margin-bottom: 2rem;
}
.servico-card {
  background: var(--branco); border-radius: 12px; box-shadow: 0 2px 12px rgba(1,42,74,0.07);
  padding: 2rem 1rem; text-align: center;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.servico-card .icon {
  font-size: 2.5rem; color: var(--azul);
  margin-bottom: 1rem;
  transition: color .3s, transform .3s;
}
.servico-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(1,42,74,0.13);
}
.servico-card:hover .icon {
  color: var(--dourado); transform: scale(1.2) rotate(-8deg);
}
.servico-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.servico-card p { font-size: 1rem; color: #444; }

/* Carrossel de destinos */
.destinos-carousel {
  position: relative; margin: 2rem 0;
}
.destinos-list {
  display: flex; gap: 2rem; overflow-x: auto; scroll-behavior: smooth;
  padding-bottom: 1rem;
}
.destino-card {
  min-width: 260px;
  min-height: 320px;
  background: var(--branco); 
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(1,42,74,0.07);
  overflow: hidden; 
  position: relative;
  transition: transform .2s, box-shadow .2s;
  display: flex; 
  flex-direction:row;
  flex-wrap: wrap;
  display: grid;
}
.destino-card img { height: 180px; object-fit: cover; }
.destino-card h4 { font-size: 1.1rem; font-weight: 700; margin: 1rem; }
.destino-card .ver-mais {
  background: var(--dourado); color: var(--azul-escuro); border: none;
  font-weight: 600; padding: .7rem 1.5rem; border-radius: 20px;
  margin: 1rem; align-self: flex-start;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.destino-btn{
  text-align: center;
}
.destino-card .ver-mais:hover { background: var(--azul); color: var(--branco); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--azul-escuro); color: var(--branco); border: none;
  font-size: 2rem; border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  opacity: 0.8; transition: background .2s;
}
.carousel-btn:hover { background: var(--azul); }
.carousel-btn.left { left: -22px; }
.carousel-btn.right { right: -22px; }

/* Depoimentos */
.depoimentos-carousel {
  background: var(--branco); border-radius: 16px; box-shadow: 0 2px 16px rgba(1,42,74,0.06);
  padding: 2rem; max-width: 900px; margin: 0 auto 2rem;
  position: relative;
}
.depoimento {
  text-align: center; opacity: 0; transition: opacity .5s;
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.depoimento.active { opacity: 1; position: relative; }
.depoimento .nome { font-weight: 700; color: var(--azul); margin-top: 1rem; }
.depoimento .cidade { font-size: .95rem; color: #888; }

/* Blog cards */
.blog-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; margin: 5% 0;
}
.blog-card {
  background: var(--branco); border-radius: 12px; box-shadow: 0 2px 12px rgba(1,42,74,0.07);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(1,42,74,0.13);
}
.blog-card img { height: 160px; object-fit: cover; }
.blog-card .blog-content { padding: 1rem; flex: 1; }
.blog-card .blog-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.blog-card .blog-date { font-size: .9rem; color: #888; margin-bottom: .5rem; }
.blog-card .leia-mais {
  background: var(--azul); color: var(--branco); border: none;
  font-weight: 600; padding: .5rem 1.2rem; border-radius: 20px;
  margin-top: 1rem; align-self: flex-start;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.blog-card .leia-mais:hover { background: var(--dourado); color: var(--azul-escuro); }

/* Rodapé */
footer {
  background: var(--azul-escuro); color: var(--branco);
  padding: 3rem 0 1rem 0;
  margin-top: 0;
}
.footer-container {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); 
  gap: 2rem;
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 2rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.footer-logo img { height: 48px; }
.footer-slogan { font-size: 1rem; margin-bottom: 1.5rem; }
.footer-links, .footer-social, .footer-form {
  display: flex; flex-direction: column; gap: .7rem;
}
.footer-links a { color: var(--branco); font-weight: 500; }
.footer-links a:hover { color: var(--dourado); }
.footer-social a { color: var(--branco); font-size: 1.5rem; margin-right: 1rem; }
.footer-social a:hover { color: var(--dourado); }
.footer-form input, .footer-form textarea {
  width: 100%; padding: .7rem; border-radius: 6px; border: none; margin-bottom: .7rem;
  font-size: 1rem;
}
.footer-form button {
  background: var(--dourado); color: var(--azul-escuro); border: none;
  font-weight: 600; padding: .7rem 1.5rem; border-radius: 20px;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.footer-form button:hover { background: var(--azul); color: var(--branco); }
.footer-legal { text-align: center; color: #ccc; font-size: .9rem; margin-top: 2rem; }

/* Utility for centered small forms used on destination pages */
.form-cotacao { max-width: 500px; margin: 0 auto; }

/* Responsividade */
@media (max-width: 900px) {
  .navbar { flex-direction: column; gap: 1rem; padding: 1rem; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero { height: 60vh; }
  .sobre-resumido { flex-direction: column; text-align: center; }
  .footer-container { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  nav ul { display: none; position: absolute; top: 60px; right: 0; background: var(--azul-escuro); flex-direction: column; width: 180px; border-radius: 0 0 8px 8px; box-shadow: 0 2px 12px rgba(1,42,74,0.13); }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .navbar { flex-direction: row; }
  .hero-content h1 { font-size: 1.5rem; }
  .destino-card { min-width: 220px; }
}
text {
  padding: 6px;
  text-align: center;
}

.descrição-card{
  margin: 30px;
}
.text-blog{
 padding: 200px;
  text-align: left;
}
.h1-blog{
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.organização-texto{
  margin: 60px 0 60px;
  padding: 0 400px;
  font-size: large;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: start;
}
.text-topicos{
  margin: 30px;
}

/* Utility classes moved from inline styles in HTML */
.hero--fixed { position: relative; height: 700px; overflow: hidden; }
.hero--solid { height: 40vh; min-height: 260px; background-color: #014aac; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.hero__video { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; z-index:0; }
.hero__overlay { position:absolute; inset:0; background: rgba(1,42,74,0.55); z-index:1; }
.hero-content--above { position:relative; z-index:2; }
.section-heading--big { text-align: center; font-size: 3em; font-family: Helvetica, Arial, sans-serif; font-weight: bold; }
.visually-hidden { display: none; }
.destinos-pesquisa--center { display:flex; justify-content:center; margin-bottom:24px; }
.destinos-search-input { width:320px; max-width:90vw; padding:10px 16px; border:1.5px solid #014aac; border-radius:24px; font-size:1rem; outline:none; }
.footer-brand { font-weight:700; font-size:1.2rem; }
.sobre-resumido--layout { margin-bottom:2.5rem; display:flex; align-items:center; gap:2rem; }
.sobre-img { width:320px; max-width:100%; height:200px; object-fit:cover; border-radius:8px; box-shadow:0 2px 12px rgba(1,42,74,0.07); }
.flex-1 { flex:1; }
.servicos--mb { margin-bottom:2.5rem; }
.servico-card--compact { align-items:center; max-width:220px; }
.team-photo { max-width:180px; border-radius:50%; margin-bottom:1rem; }
.mt-20 { margin-top: 20px; }
.bg-accent { background-color: rgb(196, 197, 255); }
.container--accent { background-color: rgb(196, 197, 255); }
.text-center { text-align: center; }