/* ==========================================================================
   WEBER CONTABILIDADE - MODERN FLUID DESIGN SYSTEM (2026)
   ========================================================================== */

:root {
  --paper: #f7faf8;
  --surface: #ffffff;
  --ink: #0f242c;
  --navy: #13333e;
  --navy-light: #1c4654;
  --teal: #1a6f6f;
  --teal-light: #288e8e;
  --teal-glow: rgba(26, 111, 111, 0.12);
  --mint: #e2ede9;
  --mint-light: #f0f7f4;
  --muted: #5e7377;
  --line: #e3ebe8;
  --orange: #e5653b;
  --orange-hover: #d25329;
  --orange-glow: rgba(229, 101, 59, 0.28);
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Manrope", var(--sans);

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 36, 44, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(15, 36, 44, 0.07);
  --shadow-lg: 0 20px 40px -8px rgba(15, 36, 44, 0.11);
  --shadow-glow: 0 0 30px rgba(26, 111, 111, 0.15);

  /* Fluid Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 50px;
}

/* Base Adjustments */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

section[id] {
  scroll-margin-top: 96px;
}

/* ==========================================================================
   HEADER & NAVBAR FLUIDA (GLASSMORPHISM)
   ========================================================================== */

.site-header {
  background: rgba(247, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 235, 232, 0.85);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 84px;
  justify-content: space-between;
}

.brand-image {
  align-items: center;
  display: inline-flex;
  height: 52px;
  transition: transform 0.25s ease;
  width: auto;
}

.brand-image:hover {
  transform: scale(1.02);
}

.brand-image img {
  height: 48px;
  object-fit: contain;
  width: auto;
}

.desktop-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(227, 235, 232, 0.8);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  margin: 0 auto;
  padding: 8px 24px;
}

.desktop-nav a {
  color: #435b60;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 4px;
  position: relative;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  background: var(--teal);
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.25s ease;
  width: 100%;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.desktop-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.button-header {
  background: var(--navy);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(19, 51, 62, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 11px 22px;
  transition: all 0.25s ease;
}

.button-header:hover {
  background: var(--teal);
  box-shadow: 0 6px 18px rgba(26, 111, 111, 0.3);
  transform: translateY(-2px);
}

.menu-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  display: none;
  padding: 8px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 4px 0;
  transition: transform 0.2s;
  width: 22px;
}

/* ==========================================================================
   HERO SECTION MODERNO (2-COLUNAS DINÂMICAS)
   ========================================================================== */

.hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(226, 237, 233, 0.85) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(229, 101, 59, 0.08) 0%, transparent 45%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  min-height: calc(100vh - 84px);
  overflow: hidden;
  padding: 60px 0 80px;
  position: relative;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 520px;
}

.hero-content {
  padding: 0;
  text-align: left;
}

.hero-badge-top {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 111, 111, 0.2);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  color: var(--teal);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  padding: 8px 18px;
}

.pulse-dot {
  animation: pulseGreen 2s infinite;
  background-color: #36b879;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  width: 8px;
}

.hero h1 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 22px;
}

.hero h1 strong {
  background: linear-gradient(135deg, var(--teal) 0%, #134f4f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: #4b6368;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 34px;
  max-width: 520px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-bottom: 44px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  padding: 16px 28px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-accent {
  background: var(--orange);
  background: linear-gradient(135deg, #e86a42 0%, #d1552d 100%);
  box-shadow: 0 8px 24px -4px var(--orange-glow);
  color: #fff;
}

.button-accent:hover {
  box-shadow: 0 12px 30px -4px rgba(229, 101, 59, 0.45);
  transform: translateY(-3px);
}

.outline-link {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  padding: 14px 20px;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.outline-link:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.hero-proof {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(227, 235, 232, 0.9);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  gap: 24px;
  padding: 16px 26px;
}

.proof-item {
  align-items: center;
  display: flex;
  gap: 14px;
}

.proof-number {
  color: var(--teal);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.hero-proof b {
  color: var(--ink);
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  margin-top: 2px;
}

.hero-proof i {
  background: #ccdcd7;
  height: 36px;
  width: 1px;
}

/* Hero Glass Card (Lado Direito) */
.hero-visual {
  display: block;
  position: relative;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 38px 32px;
  position: relative;
  transition: transform 0.3s ease;
}

.hero-glass-card:hover {
  transform: translateY(-4px);
}

.card-badge-header {
  align-items: center;
  background: var(--mint-light);
  border: 1px solid rgba(26, 111, 111, 0.15);
  border-radius: var(--r-pill);
  color: var(--navy);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 14px;
}

.status-dot {
  background: var(--teal);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.card-metric-box {
  align-items: center;
  background: linear-gradient(135deg, rgba(226, 237, 233, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 20px;
}

.metric-value {
  color: var(--teal);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.metric-label strong {
  color: var(--navy);
  display: block;
  font-size: 14px;
}

.metric-label small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.card-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-feature-row {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}

.feat-check {
  align-items: center;
  background: #e4f4ed;
  border-radius: 50%;
  color: #279660;
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.card-feature-row strong {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.card-feature-row p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin: 3px 0 0;
}

.card-floating-badge {
  align-items: center;
  animation: floatPill 3.5s ease-in-out infinite;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  bottom: -18px;
  box-shadow: var(--shadow-md);
  display: flex;
  font-size: 12px;
  gap: 10px;
  padding: 10px 18px;
  position: absolute;
  right: 20px;
}

.card-floating-badge .stars {
  color: #f5a623;
  letter-spacing: 2px;
}

.card-floating-badge b {
  color: var(--navy);
  font-weight: 700;
}

@keyframes floatPill {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */

.trust-strip {
  background: var(--navy);
  color: #ffffff;
  padding: 24px 0;
}

.trust-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.trust-inner p {
  color: #d1e2de;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.trust-inner div {
  color: #b1d0c8;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 28px;
}

.trust-inner span {
  align-items: center;
  display: flex;
  gap: 6px;
}

/* ==========================================================================
   SEÇÕES GERAIS E TIPOGRAFIA
   ========================================================================== */

.section {
  padding: 100px 0;
}

.section-kicker {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--orange);
}

.section-kicker i {
  background: var(--teal);
  height: 1px;
  opacity: 0.4;
  width: 24px;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-heading h2,
.about-grid h2,
.segments-grid h2,
.contact-grid h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.16;
  margin: 0;
  max-width: 580px;
}

.section-heading h2 strong,
.about-grid h2 strong {
  color: var(--teal);
}

.section-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

/* Seção Sobre */
.about-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  padding-top: 20px;
}

.about-copy .lead {
  color: var(--navy);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 0;
}

.about-copy p {
  color: #556c70;
  font-size: 15px;
  line-height: 1.8;
}

.arrow-link {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  margin-top: 16px;
  transition: transform 0.2s ease;
}

.arrow-link:hover {
  transform: translateX(4px);
}

/* ==========================================================================
   DIFERENCIAIS & SERVIÇOS (CARDS MODERNOS COM ELEVAÇÃO)
   ========================================================================== */

.differentials-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.differentials-grid,
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}

.diff-card,
.services-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  padding: 34px 26px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.diff-card:hover,
.services-grid article:hover {
  background: #ffffff;
  border-color: rgba(26, 111, 111, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.diff-icon {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  font-size: 26px;
  height: 52px;
  justify-content: center;
  margin-bottom: 22px;
  width: 52px;
}

.service-icon {
  align-items: center;
  background: var(--mint-light);
  border-radius: var(--r-md);
  color: var(--teal);
  display: flex;
  font-size: 24px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.services-grid article > b {
  color: #9cb2b0;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.diff-card h3,
.services-grid h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 0 10px;
}

.diff-card p,
.services-grid p {
  color: #5c7275;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.services-grid a {
  align-items: center;
  border-radius: var(--r-pill);
  color: var(--teal);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  margin-top: auto;
  padding: 10px 0 0;
  position: static;
  transition: all 0.2s ease;
}

.services-grid a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

/* ==========================================================================
   SEGMENTOS (CARD ESCURO SOFISTICADO)
   ========================================================================== */

.segments-section {
  background: linear-gradient(135deg, #13333e 0%, #0a1f26 100%);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

.segments-grid {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 1fr;
}

.segments-section h2 {
  color: #ffffff;
}

.segments-section h2 strong {
  color: #8ed0c1;
}

.segments-section p {
  color: #b7ceca;
  font-size: 15px;
  line-height: 1.8;
  margin: 20px 0 32px;
  max-width: 460px;
}

.button-light {
  background: #ffffff;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  color: var(--navy);
  font-weight: 700;
}

.button-light:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.segment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.segment-list a {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: #ffffff;
  display: flex;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  justify-content: space-between;
  padding: 18px 24px;
  transition: all 0.25s ease;
}

.segment-list a:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(142, 208, 193, 0.3);
  padding-left: 30px;
}

.segment-list span {
  color: #8ed0c1;
  font-family: monospace;
  font-size: 12px;
  margin-right: 14px;
}

.segment-list b {
  color: #8ed0c1;
  font-weight: 400;
}

/* ==========================================================================
   DEPOIMENTOS & ARTIGOS
   ========================================================================== */

.testimonial-section {
  background: var(--mint);
  padding: 90px 0;
}

.testimonial-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.75fr 1.25fr;
}

.testimonial-grid blockquote {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.45;
  margin: 0;
}

.rating {
  color: var(--orange);
  font-size: 20px;
  margin-top: 24px;
}

.rating small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  margin-left: 10px;
}

.author {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.author span {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.author b {
  color: var(--ink);
  display: block;
  font-size: 13px;
}

.author small {
  color: var(--muted);
  font-size: 11px;
}

.articles-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.articles-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
  transition: all 0.28s ease;
}

.articles-grid article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.article-tag {
  background: rgba(229, 101, 59, 0.1);
  border-radius: var(--r-pill);
  color: var(--orange);
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  width: fit-content;
}

.articles-grid h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  margin: 20px 0 24px;
}

.articles-grid a {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

/* ==========================================================================
   FAQ (ACCORDION MODERNO)
   ========================================================================== */

.faq-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 48px auto 0;
  max-width: 840px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item[open] {
  background: #ffffff;
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.faq-question {
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 24px 28px;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  align-items: center;
  background: var(--mint-light);
  border-radius: 50%;
  color: var(--teal);
  display: flex;
  font-size: 20px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  line-height: 1;
  transition: all 0.25s ease;
  width: 32px;
}

.faq-item[open] .faq-icon {
  background: rgba(229, 101, 59, 0.12);
  color: var(--orange);
  transform: rotate(45deg);
}

.faq-answer {
  border-top: 1px solid rgba(227, 235, 232, 0.6);
  color: #556c70;
  font-size: 14.5px;
  line-height: 1.75;
  padding: 20px 28px 26px;
}

/* ==========================================================================
   CONTATO & FORMULÁRIO (CARD ESCURO PREMIUM)
   ========================================================================== */

.contact-section {
  background: linear-gradient(135deg, #13333e 0%, #0c232a 100%);
  color: #ffffff;
  padding: 100px 0;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section h2 strong {
  color: #8ed0c1;
}

.contact-section p {
  color: #b7ceca;
  font-size: 15px;
  line-height: 1.8;
  margin: 20px 0 28px;
}

.contact-address {
  color: #b7ceca;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 36px;
}

.contact-address b {
  color: #ffffff;
  font-size: 14px;
}

.contact-address a {
  color: #8ed0c1;
  font-weight: 700;
}

.office-hours {
  color: #d1e5e1;
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px 34px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  color: #d8eae5;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 13.5px;
  outline: none;
  padding: 12px 14px;
  transition: all 0.2s ease;
  width: 100%;
}

.contact-form select option {
  background: #13333e;
  color: #ffffff;
  padding: 10px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #8ed0c1;
  box-shadow: 0 0 0 3px rgba(142, 208, 193, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8da4a0;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 6px;
}

.form-note {
  color: #8da4a0;
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}

.map-frame {
  border-radius: var(--r-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  grid-column: 1 / -1;
  margin-top: 30px;
  overflow: hidden;
}

.map-frame h3 {
  background: rgba(255, 255, 255, 0.06);
  color: #d8eae5;
  font-family: var(--display);
  font-size: 16px;
  margin: 0;
  padding: 18px 24px;
}

.map-frame iframe {
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(0.95);
  height: 320px;
  width: 100%;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.site-footer {
  background: #091a20;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-inner p {
  color: #88a3a0;
  font-size: 13px;
  margin: 0;
}

.footer-inner > div {
  display: flex;
  gap: 24px;
}

.footer-inner > div a {
  color: #b1cfca;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-inner > div a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64817e;
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
}

/* ==========================================================================
   WHATSAPP FLOAT & TOOLTIP
   ========================================================================== */

.whatsapp-float-wrapper {
  align-items: center;
  bottom: 28px;
  display: flex;
  gap: 12px;
  position: fixed;
  right: 28px;
  z-index: 999;
}

.whatsapp-tooltip {
  align-items: center;
  animation: floatTooltip 3s ease-in-out infinite;
  background: #ffffff;
  border: 1px solid rgba(227, 235, 232, 0.9);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  color: var(--navy);
  display: flex;
  font-size: 12px;
  gap: 8px;
  padding: 10px 18px;
  pointer-events: none;
}

.online-indicator {
  animation: pulseGreen 2s infinite;
  background-color: #36b879;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  width: 8px;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: #ffffff;
  display: flex;
  height: 58px;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 58px;
}

.whatsapp-float:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  transform: scale(1.08);
}

.whatsapp-float svg {
  fill: currentColor;
  height: 30px;
  width: 30px;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(54, 184, 121, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(54, 184, 121, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(54, 184, 121, 0);
  }
}

@keyframes floatTooltip {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* ==========================================================================
   RESPONSIVIDADE FLUIDA
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .differentials-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-grid,
  .about-grid,
  .testimonial-grid,
  .contact-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 72px;
  }

  .header-inner {
    height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .button-header {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .desktop-nav.is-open {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    left: 20px;
    padding: 24px;
    position: absolute;
    right: 20px;
    top: 76px;
    z-index: 1001;
  }

  .desktop-nav.is-open a {
    border-bottom: 1px solid #f0f4f2;
    font-size: 15px;
    padding: 8px 0;
    width: 100%;
  }

  .differentials-grid,
  .services-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .trust-inner div {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .whatsapp-float-wrapper {
    bottom: 18px;
    right: 18px;
  }
}


