/* --- VARIÁVEIS E CONFIGURAÇÕES GERAIS --- */
:root {
  --blue-primary: #0a8ccf;
  --blue-dark: #064f77;
  --blue-light: #e6f4fb;
  --whatsapp-green: #25d366;
  --white: #ffffff;
  --gray-text: #4a4a4a;
  --gray-light: #f7f7f7;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- NAVBAR --- */
.navbar {
  background: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img { 
  max-height: 45px; 
  transition: transform 0.3s ease; 
}

.logo img:hover { 
  transform: scale(1.05); 
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  position: relative;
}

.nav-links a:not(.btn-nav):hover { color: var(--blue-primary); }

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  width: 0; 
  height: 2px;
  bottom: -5px; 
  left: 0;
  background-color: var(--blue-primary);
  transition: width 0.3s;
}

.nav-links a:not(.btn-nav):hover::after { width: 100%; }

.btn-nav {
  background: var(--blue-primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-nav:hover { background: var(--blue-dark); }

/* --- HERO --- */
.hero {
  background-image: linear-gradient(rgba(6, 79, 119, 0.4), rgba(10, 140, 207, 0.2)), url('ASSETS/fundo_hero.webp');
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: stretch;
  color: #ffffff;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-text { max-width: 600px; padding: 40px 0; }

.badge {
  background: var(--blue-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-services {
  list-style: none;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-services li {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-services li span { color: var(--whatsapp-green); }

.btn-cta {
  display: inline-block;
  background-color: var(--whatsapp-green);
  color: #fff;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-cta:hover { 
  background-color: #20bd5a; 
  transform: translateY(-3px); 
}

.hero-image { 
  position: relative;
  align-self: flex-end; 
  line-height: 0;
  z-index: 5;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  filter: drop-shadow(-10px 0 20px rgba(0,0,0,0.2));
}

.dra-tag {
  position: absolute;
  bottom: 60px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  line-height: 1.2;
  border-left: 4px solid var(--blue-primary);
}

.dra-tag p {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.dra-tag span {
  color: var(--gray-text);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- SEÇÕES GERAIS --- */
.tratamentos, .faq, .depoimentos, .localizacao, .cta-final { padding: 80px 0; text-align: center; }

.section-title { font-size: 2.2rem; color: var(--blue-dark); margin-bottom: 15px; }

.section-subtitle { max-width: 700px; margin: 0 auto 40px; }

.cards-grid, .faq-grid, .depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; 
  margin-top: 50px;
}

.card, .faq-item, .depoimento-card {
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px 30px;
  transition: 0.3s ease;
}

.card:hover, .faq-item:hover { 
  border-color: var(--blue-primary); 
  transform: translateY(-5px); 
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.faq-item { text-align: left; background: var(--gray-light); }

.depoimentos { background-color: var(--gray-light); }

.depoimento-card { font-style: italic; }

.depoimento-card span {
  display: block; 
  margin-top: 15px;
  font-weight: 700; 
  font-style: normal; 
  color: var(--blue-dark);
}

/* --- MAPA --- */
.map-container {
  max-width: 900px; 
  margin: 0 auto 30px;
  border-radius: 15px; 
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- CTA FINAL --- */
.cta-final { background: var(--blue-light); }

.btn-primary-large {
  display: inline-block;
  background: #20bd5a;
  color: var(--white);
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary-large:hover { transform: scale(1.05); background: #19a34d; }

/* --- FOOTER --- */
.footer-bar { background-color: var(--blue-dark); color: var(--white); padding: 40px 0; }

.footer-flex { display: flex; justify-content: space-between; align-items: center; }

.footer-brand { display: flex; align-items: center; gap: 15px; }

.footer-logo-img { max-height: 35px; filter: brightness(0) invert(1); }

.footer-brand span { font-size: 0.9rem; border-left: 1px solid rgba(255,255,255,0.3); padding-left: 15px; }

/* --- WHATSAPP FIXO --- */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px; 
  right: 30px;
  background-color: var(--whatsapp-green);
  width: 75px; /* Ligeiramente maior para destaque */
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-green 2s infinite;
}

.whatsapp-fixed img { width: 45px; height: 45px; object-fit: contain; }

.whatsapp-fixed:hover { transform: scale(1.1); background-color: #19a34d; }

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
  .hero-content { flex-direction: column; text-align: center; padding-top: 40px; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-services { justify-items: center; margin: 0 auto 25px; }
  .hero-image img { max-width: 380px; }
  .nav-links { display: none; }
  .dra-tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: 200px;
    border-left: none;
    border-bottom: 4px solid var(--blue-primary);
  }
  .footer-flex { flex-direction: column; gap: 25px; text-align: center; }
  .footer-brand span { border-left: none; padding-left: 0; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .btn-cta { width: 100%; }
  .whatsapp-fixed { width: 65px; height: 65px; bottom: 20px; right: 20px; }
  .whatsapp-fixed img { width: 38px; height: 38px; }
}