/* ==========================================================================
/* ==========================================================================
   Configurações Globais
   ========================================================================== */
:root {
  --blue-dark: #002b5c;
  --blue-darker: #08265f;
  --blue-primary: #0056b3;
  --blue-hover: #004085;
  --green-whatsapp: #25D366;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Utilitários
   ========================================================================== */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #111111;
  margin-bottom: 40px;
  font-weight: 700;
}

.margin-top {
  margin-top: 60px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--green-whatsapp);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background-color: #22c55e;
}

.btn-primary i {
  margin-right: 8px;
}

.services-subtitle,
.map-subtitle,
.contact-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-subtitle {
  color: #e5e7eb;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--blue-primary);
}

.btn-nav {
  background-color: var(--blue-primary);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-nav:hover {
  background-color: var(--blue-hover);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section {
  background: var(--blue-darker);
  color: white;
  padding: 90px 0;
  text-align: center;
}

.hero-container h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-container p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-container p strong {
  color: #ffc107;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar-section {
  padding-top: 0;
  padding-bottom: 30px;
  margin-top: -30px;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar div {
  background: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #222222;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

/* ==========================================================================
   Serviços
   ========================================================================== */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-grid-minor {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border-top: 4px solid var(--blue-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #111;
}

.service-card h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #111;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.service-card p strong {
  color: var(--blue-primary);
}

.service-card.minor {
  border-top: 4px solid #6c757d;
  padding: 25px 20px;
}

.service-card.featured {
  border-top: 5px solid var(--blue-primary);
  position: relative;
}

.service-card.featured::before {
  content: "⭐ ESPECIALIDADE";
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ffc107;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-icon-small {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.service-list {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.service-list li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
}

/* ==========================================================================
   Sobre
   ========================================================================== */
.about-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.about-container {
  max-width: 1000px;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555555;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px auto;
  max-width: 900px;
}

.about-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.about-item:hover {
  transform: translateY(-5px);
}

.about-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 10px;
  line-height: 1;
}

.about-icon {
  font-size: 3.5rem;
  margin-bottom: 10px;
  line-height: 1;
}

.about-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.about-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-description strong {
  color: var(--blue-primary);
}

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.differentials-section {
  padding: 80px 0;
  background: var(--blue-darker);
  color: white;
}

.differentials-section .section-title {
  color: white;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.differential-card {
  text-align: center;
  padding: 40px 20px;
  /* backdrop-filter removido — pesado no mobile */
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.differential-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
}

.differential-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.differential-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.differential-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

/* ==========================================================================
   Mapa
   ========================================================================== */
.map-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.map-wrapper iframe {
  width: 100% !important;
  height: 450px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Contato
   ========================================================================== */
.contato {
  background: var(--blue-dark);
  color: white;
  padding: 80px 0;
}

.contato h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.contact-grid div {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.12);
}

.contact-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #ffffff;
}

.contact-grid p {
  color: #e5e7eb;
  line-height: 1.6;
}

.contact-grid small {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.contato a,
.contato a:visited {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contato a:hover {
  color: #4DA8F0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-bottom-section {
  background: var(--blue-darker);
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

.footer-bottom-section p {
  margin: 0;
  color: #cccccc;
}

.footer-info,
.footer-description,
.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #aaaaaa;
  text-decoration: underline;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   WhatsApp Flutuante
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #22c55e;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.whatsapp-float i {
  margin: 0;
  line-height: 1;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  animation: pulse-whatsapp 1.5s infinite;
  z-index: -1;
}

@keyframes pulse-whatsapp {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.2); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, right 0.3s ease;
  font-family: 'Inter', system-ui, sans-serif;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #333;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* ==========================================================================
   LGPD Banner
   ========================================================================== */
.lgpd-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
  border-radius: 12px;
  border: 1px solid #eaeaea;
  padding: 20px 25px;
  z-index: 999999;
  font-family: 'Inter', system-ui, sans-serif;
  animation: lgpdSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lgpdSlideUp {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.lgpd-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lgpd-text {
  flex: 1 1 320px;
}

.lgpd-text strong {
  color: #002b5c;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.lgpd-text p {
  color: #555555;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.lgpd-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-lgpd-pri {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
  background-color: #0056b3;
  color: #ffffff;
}

.btn-lgpd-pri:hover {
  background-color: #004085;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 992px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .services-grid-minor { grid-template-columns: repeat(2, 1fr); }
  .about-grid          { grid-template-columns: repeat(2, 1fr); }
  .differentials-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-container  { flex-direction: column; gap: 15px; }
  .nav-links      { gap: 15px; flex-wrap: wrap; justify-content: center; font-size: 0.9rem; }
  .logo img       { height: 50px; }

  .hero-container h1 { font-size: 2rem; }
  .hero-container p  { font-size: 1rem; }

  .trust-bar     { flex-direction: column; }
  .trust-bar div { width: 100%; text-align: center; }

  .services-grid       { grid-template-columns: 1fr; }
  .services-grid-minor { grid-template-columns: 1fr; }

  .service-card.featured::before {
    font-size: 0.6rem;
    padding: 4px 10px;
    top: -12px;
    right: 10px;
  }

  .about-grid         { grid-template-columns: 1fr; }
  .about-number,
  .about-icon         { font-size: 2.5rem; }

  .differentials-grid { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }

  .map-wrapper iframe { height: 300px; }
  .section-title      { font-size: 1.6rem; }

  .whatsapp-float { width: 55px; height: 55px; font-size: 26px; bottom: 20px; right: 20px; }
  .whatsapp-tooltip { display: none; }

  .lgpd-banner  { bottom: 12px; left: 12px; right: 12px; padding: 16px; }
  .lgpd-actions { width: 100%; }
  .btn-lgpd-pri { flex: 1; text-align: center; padding: 12px 10px; }
}

@media (max-width: 480px) {
  .hero-container h1 { font-size: 1.6rem; }
  .hero-container p  { font-size: 0.95rem; }
  .btn-primary       { padding: 12px 20px; font-size: 0.9rem; }

  .service-card,
  .service-card.minor { padding: 20px 15px; }

  .about-number,
  .about-icon { font-size: 2rem; }
}

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
  .navbar,
  .trust-bar-section,
  .differentials-section,
  .reviews-section,
  .whatsapp-float { display: none; }

  body { background: white; }

  .service-card,
  .about-item { break-inside: avoid; }
}