:root {
  --primary: #0056b3;
  --accent: #ff7a00;
  --bg: #f9fafc;
  --card-bg: #ffffff;
  --text: #0056b3;
  --muted: #6b7280;
  --radius: 10px;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',sans-serif; background:var(--bg); color:var(--text); line-height:1.6; }
.container { max-width:1100px; margin:0 auto; padding:0 20px; }
/* Header */
.header { background:linear-gradient(90deg,var(--primary),var(--accent)); color:white; padding:15px 0; position:sticky; top:0; z-index:100; box-shadow:0 2px 8px rgba(0,0,0,.1); }
.header .container { display:flex; justify-content:space-between; align-items:center; }
.brand { display:flex; align-items:center; gap:12px; }
.logo-img { 
  width: 65px; 
  height: 65px; 
  border-radius: 50%; 
  object-fit: cover;
  object-position: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0); /* <-- Mudei o alpha para 0.2 */
  transform: scale(1.5);
}
nav { display:flex; align-items:center; }
nav a { color:white; text-decoration:none; margin-left:20px; font-weight:500; transition:opacity .3s; }
nav a:hover, nav a.active { opacity:0.8; }
/* Ícone Instagram no Header */
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 18px;
  text-decoration: none;
  margin-left: 15px;
  transition: background 0.3s, transform 0.3s;
}
.nav-social:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}
/* Hero */
.hero { 
  color:white; 
  padding:100px 20px; 
  text-align:center; 
  min-height:70vh; 
  display:flex; 
  align-items:center; 
  justify-content:center;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero-content h1 { font-size:2.5em; margin-bottom:10px; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.hero-content p { font-size:1.2em; margin-bottom:20px; opacity:0.95; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }
/* Buttons */
.btn { background:var(--accent); color:white; border:none; padding:12px 24px; border-radius:var(--radius); font-weight:600; cursor:pointer; transition:transform .2s; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { background:var(--primary); }
/* Cards */
.card { background:var(--card-bg); border-radius:var(--radius); padding:20px; box-shadow:0 2px 10px rgba(0,0,0,.08); }
.card h4 { margin-bottom:8px; color:var(--primary); }
.muted { color:var(--muted); font-size:14px; }
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; margin-top:20px; }
/* Produtos */
.produto img { width:100%; height:200px; object-fit:cover; border-radius:var(--radius); margin-bottom:10px; }
/* Timeline */
.timeline { margin-top:30px; }
.timeline-item { display:flex; gap:15px; margin-bottom:25px; }
.timeline-marker { background:var(--accent); color:white; width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
.timeline-content { background:var(--card-bg); padding:15px; border-radius:var(--radius); flex:1; box-shadow:0 2px 8px rgba(0,0,0,.06); }
.timeline-content h3 { color:var(--primary); margin-bottom:10px; font-size:1.2em; }
/* Form */
.form-inline { display:flex; gap:10px; flex-wrap:wrap; }
.form-inline select { flex:1; min-width:200px; padding:10px; border-radius:var(--radius); border:1px solid #ddd; }
/* Footer */
.footer { background:var(--primary); color:white; text-align:center; padding:20px; margin-top:60px; }
/* Footer com Redes Sociais */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.social-link:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}
.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-link.whatsapp {
  background: #25D366;
}
h1,h2 { margin-bottom:15px; }
.lead { font-size:1.1em; color:var(--muted); margin-bottom:20px; }
/* Centralizar títulos principais */
main.container > h1,
main.container > section > h2,
main.container h2 {
  text-align: center;
  color: var(--primary);
}
main.container > h1 {
  font-size: 2.2em;
  margin-top: 30px;
  margin-bottom: 15px;
}
main.container > .lead {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
main.container h2 {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 30px;
}
/* Botão Flutuante WhatsApp - ESTILO DO PRIMEIRO BOTÃO */
.whatsapp-float {
    position: fixed;
    bottom: 30px; /* Padrão para desktop: parte inferior */
    right: 30px;
    background-color: #25D366; /* Cor do WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em; /* Equivalente a 32px se base for 16px */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra genérica */
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Garante que não haja sublinhado */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Sombra genérica mais forte */
}

/* A regra .whatsapp-float::before foi removida */

/* Passeios Cards */
.grid-passeios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}
.passeio-card {
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.passeio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.15);
}
.passeio-icon {
  font-size: 3em;
  margin-bottom: 15px;
}
.passeio-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3em;
}
.passeio-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95em;
}
/* Home Cards */
.home-card {
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.home-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.15);
}
.card-icon {
  font-size: 3em;
  margin-bottom: 15px;
}
.home-card h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3em;
}
.home-card p {
  line-height: 1.6;
}
/* ========== PÁGINA HISTÓRIA ========== */
/* Introdução */
.historia-intro {
  text-align: center;
  margin-bottom: 40px;
}
.historia-intro h1 {
  font-size: 2.2em;
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}
.historia-intro .lead {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
}
/* Imagem Destaque */
.historia-image {
  margin: 40px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.historia-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
}
/* Valores Section */
.valores-section {
  margin: 50px 0;
  text-align: center;
}
.valores-section h2 {
  font-size: 2em;
  color: var(--primary);
  margin-bottom: 30px;
}
.grid-valores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.valor-card {
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.valor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.15);
}
.valor-icon {
  font-size: 3em;
  margin-bottom: 15px;
}
.valor-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3em;
}
.valor-card p {
  color: var(--muted);
  line-height: 1.7;
}
/* Timeline Section */
.timeline-section {
  margin: 50px 0;
}
.timeline-section h2 {
  font-size: 2em;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}
/* Call to Action */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 50px 20px;
  border-radius: var(--radius);
  margin: 50px 0;
}
.cta-section h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: white;
}
.cta-section p {
  font-size: 1.2em;
  margin-bottom: 25px;
  opacity: 0.95;
}
.cta-section .btn {
  background: white;
  color: var(--primary);
  font-weight: 700;
}
.cta-section .btn:hover {
  background: rgba(255,255,255,0.9);
}
/* ========== CARROSSEL DE IMAGENS ========== */
.carousel-section {
  margin: 40px 0;
  text-align: center;
}
.carousel-section h2 {
  font-size: 2em;
  color: var(--primary);
  margin-bottom: 25px;
}
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.carousel-inner {
  position: relative;
  width: 100%;
  height: 400px;
}
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-item.active {
  opacity: 1;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Setas de Navegação */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: rgba(0,0,0,0.8);
}
.carousel-arrow.prev {
  left: 15px;
}
.carousel-arrow.next {
  right: 15px;
}
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.indicator.active {
  background: white;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}
/* Responsivo */
@media (max-width: 768px) {
  .header .container { flex-direction:column; gap:10px; }
  nav { display:flex; flex-wrap:wrap; justify-content:center; }
  .hero-content h1 { font-size:1.8em; }
  /* Botão Flutuante WhatsApp - RESPONSIVO DO PRIMEIRO BOTÃO */
  .whatsapp-float {
    width: 50px; /* Reduz um pouco o tamanho para mobile */
    height: 50px;
    font-size: 1.8em; /* Ajusta o tamanho do ícone para mobile */
    bottom: 20px; /* Volta para a parte inferior */
    right: 20px; /* Mantém a posição direita */
    top: auto; /* Garante que não está no topo */
  }
  main.container > h1 {
    font-size: 1.8em;
    text-align: center;
  }
  main.container h2 {
    font-size: 1.6em;
    text-align: center;
  }
  .historia-intro h1 {
    font-size: 1.8em;
  }
  .historia-intro .lead {
    font-size: 1em;
  }
  .historia-image img {
    max-height: 300px;
  }
  .cta-section h2 {
    font-size: 1.5em;
  }
  .carousel-inner {
    height: 250px;
  }
  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .carousel-arrow.prev {
    left: 8px;
  }
  .carousel-arrow.next {
    right: 8px;
  }
  .carousel-indicators {
    bottom: 10px;
    gap: 6px;
  }
  .indicator {
    width: 8px;
    height: 8px;
  }
  .nav-social {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
