/* ==========================================================
   CONTVALOR — Estilos do site público
   Conceito: "Números contam. Valor transforma."
   ========================================================== */
:root {
  /* Fundo quase preto, com leve matiz esverdeado — igual ao modelo aprovado */
  --teal-950: #071613;
  --teal-900: #0B221D;
  --teal-800: #123128;
  --teal-700: #1C4438;

  --sand: #F0C7A8;
  --sand-light: #F8E3D2;

  /* Dourado quente (não mais laranja-ferrugem) */
  --copper: #C6863F;
  --copper-light: #E8B26E;
  --copper-glow: #F0C482;

  --cream: #FBF8F4;
  --cream-2: #F3ECE2;

  --ink: #0E2226;
  --gray-500: #5C6B6E;
  --gray-400: #8B9A9C;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 20px -8px rgba(0, 8, 6, 0.3);
  --shadow: 0 20px 50px -16px rgba(0, 8, 6, 0.45);
  --shadow-copper: 0 12px 34px -10px rgba(198, 134, 63, 0.4);

  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-inline { width: 15px; height: 15px; flex-shrink: 0; vertical-align: -2.5px; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 130px 0; position: relative; }
@media (max-width: 900px) { section { padding: 90px 0; } }
@media (max-width: 600px) { .container { padding: 0 20px; } section { padding: 70px 0; } }

.section-dark { background: var(--teal-950); color: var(--white); }
.section-cream { background: var(--cream); }
/* Regra sistêmica: qualquer título dentro de uma seção escura fica branco.
   Isso evita o bug de título invisível (texto escuro sobre fundo escuro)
   sempre que uma nova seção escura for criada. */
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--copper); font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--copper); display: inline-block; }
.section-dark .eyebrow { color: var(--sand); }
.section-dark .eyebrow::before { background: var(--copper-light); }

.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head.align-left { margin: 0 0 56px; text-align: left; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }
.section-head p { margin-top: 16px; color: var(--gray-500); font-size: 17px; }
.section-dark .section-head p { color: rgba(255,255,255,.65); }
.text-copper { color: var(--copper); }
.section-dark .text-copper { color: var(--copper-light); }

/* ============== REVEAL ANIMATIONS ============== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
.reveal-delay-1.in-view { transition-delay: .08s; }
.reveal-delay-2.in-view { transition-delay: .16s; }
.reveal-delay-3.in-view { transition-delay: .24s; }
.reveal-delay-4.in-view { transition-delay: .32s; }
.reveal-delay-5.in-view { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: all .3s var(--ease);
  font-family: var(--font-body);
}
.btn-primary { background: var(--copper); color: var(--white); box-shadow: var(--shadow-copper); }
.btn-primary:hover { background: #B0742F; transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(198,134,63,.5); }
.btn-outline { border-color: rgba(14,34,38,.25); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,.3); color: var(--white); background: rgba(255,255,255,.04); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ============== HEADER ============== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(4,16,12,.6); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.header-inner { display: flex; align-items: center; gap: 32px; padding: 18px 28px; }
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; overflow: hidden; max-width: 260px; }
.logo-mark { display: flex; flex-shrink: 0; }
.logo-mark-icon { width: 28px; height: 28px; }
.logo-text { display: flex; flex-direction: column; min-width: 0; }
.logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 19px; color: var(--white); letter-spacing: -0.01em; }
.logo-tagline { font-size: 9.5px; letter-spacing: .14em; color: var(--sand); font-weight: 600; text-transform: uppercase; }
.logo-img { display: block; width: auto; height: auto; max-width: 100%; max-height: 42px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; color: rgba(255,255,255,.78); font-size: 14.5px; font-weight: 600; padding: 8px 0; }
.main-nav a::after { content:''; position:absolute; left:0; right:0; bottom:2px; height:2px; background: var(--copper-light); transform: scaleX(0); transition: transform .3s var(--ease); }
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--white); }
.main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-cta { padding: 12px 22px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 4px; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 920px) {
  .main-nav {
    position: fixed; top: var(--header-h, 76px); left: 0; right: 0; bottom: 0; background: var(--teal-950);
    flex-direction: column; align-items: flex-start; gap: 4px; padding: 26px 28px;
    transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 17px; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ============== HERO ============== */
.hero {
  min-height: 100vh; position: relative; overflow: hidden; color: var(--white);
}

/* Slider do Hero — cada slide ocupa a seção inteira, com máscara escura
   por cima da imagem para manter a legibilidade e a identidade do site. */
.hero-slide {
  display: none; position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 20% -10%, #1c4438 0%, var(--teal-950) 55%), var(--teal-950);
  background-size: cover; background-position: center;
}
.hero-slide.active { display: block; animation: hero-fade .7s var(--ease); }
@keyframes hero-fade { from { opacity: 0; } to { opacity: 1; } }
.hero-slide-mask {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,22,19,.94) 0%, rgba(7,22,19,.82) 45%, rgba(7,22,19,.55) 75%, rgba(7,22,19,.35) 100%);
}
.hero-slide-inner {
  position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 170px; padding-bottom: 110px;
}
.hero-copy, .hero-slide-inner { max-width: none; }
.hero h1 { font-size: clamp(34px, 4.4vw, 50px); font-weight: 800; margin: 18px 0 22px; color: var(--white); max-width: 700px; }
.hero h1 .line2 { color: var(--copper-light); display: block; }
.hero-subtitle { color: rgba(255,255,255,.7); font-size: 17px; max-width: 460px; margin-bottom: 34px; }
.hero-subtitle span { display: block; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-slider-nav { position: absolute; left: 50%; bottom: 44px; transform: translateX(-50%); z-index: 2; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
.hero-dots { display: flex; gap: 9px; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; padding: 0; cursor: pointer; transition: all .3s var(--ease); }
.hero-dot.active { background: var(--copper-light); width: 26px; border-radius: 5px; }
.hero-slider-arrows { display: flex; gap: 8px; }
.hero-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); background: transparent; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.hero-arrow .icon { width: 15px; height: 15px; }
.hero-arrow:hover { background: var(--copper); border-color: var(--copper); }
.hero-arrow.nav-prev .icon { transform: rotate(180deg); }

@media (max-width: 560px) {
  .hero-slide-inner { padding-top: 130px; padding-bottom: 90px; }
  .hero-slider-nav { bottom: 26px; }
}

/* ============== DIFERENCIAL (Bloco 2) ============== */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 992px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
  background: var(--white); border: 1px solid rgba(14,34,38,.08); border-radius: var(--radius);
  padding: 32px 26px; transition: all .35s var(--ease);
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.diff-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--teal-950); color: var(--sand); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: transform .35s var(--ease); }
.diff-card:hover .diff-icon { transform: rotate(-6deg) scale(1.06); }
.diff-card h3 { font-size: 18.5px; margin-bottom: 10px; font-weight: 800; }
.diff-card p { font-size: 14.5px; color: var(--gray-500); }

/* ============== QUEM SOMOS (Bloco 3) ============== */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.6; box-shadow: var(--shadow); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-placeholder { width: 100%; height: 100%; background: linear-gradient(150deg, var(--teal-800), var(--teal-950)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); }
.about-media-badge {
  position: absolute; left: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(4,16,12,.6); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
}
.about-media-badge .logo-mark-icon { width: 26px; height: 26px; }
.about-text p.lede { font-size: 18px; color: var(--gray-500); margin: 18px 0 40px; }
.about-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.about-stat .num { font-family: var(--font-heading); font-size: 34px; font-weight: 800; color: var(--teal-950); }
.about-stat .num .plus { color: var(--copper); }
.about-stat .label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* ============== SERVIÇOS (Bloco 4) — glassmorphism ============== */
.services-section { background: linear-gradient(160deg, var(--teal-950) 0%, #0d251e 100%); color: var(--white); overflow: hidden; }
.services-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative; padding: 32px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  overflow: hidden; transition: all .4s var(--ease);
}
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s var(--ease);
  background: radial-gradient(180px circle at var(--mx,50%) var(--my,0%), rgba(217,121,61,.35), transparent 70%);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(217,121,61,.5); box-shadow: 0 24px 50px -20px rgba(0,0,0,.5); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(217,121,61,.15); color: var(--copper-light); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: transform .4s var(--ease); position: relative; z-index: 1; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(4deg); }
.service-card h3 { color: var(--white); font-size: 18.5px; margin-bottom: 10px; font-weight: 800; position: relative; z-index: 1; }
.service-card p { font-size: 14.5px; color: rgba(255,255,255,.62); margin-bottom: 18px; position: relative; z-index: 1; }
.service-card .link-more { color: var(--sand); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; position: relative; z-index: 1; }

/* ============== METODOLOGIA (Bloco 5) ============== */
.methodology-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
@media (max-width: 900px) { .methodology-flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .methodology-flow { grid-template-columns: 1fr; } }
.methodology-flow::before {
  content: ''; position: absolute; top: 44px; left: 60px; right: 60px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--copper) 0 10px, transparent 10px 18px);
}
@media (max-width: 900px) { .methodology-flow::before { display: none; } }
.method-step { position: relative; text-align: center; cursor: pointer; }
.method-num { width: 88px; height: 88px; border-radius: 50%; background: var(--teal-950); color: var(--sand); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; transition: all .35s var(--ease); box-shadow: var(--shadow-sm); }
.method-num .icon { width: 30px; height: 30px; }
.method-step:hover .method-num, .method-step.open .method-num { background: var(--copper); color: var(--white); transform: scale(1.08); }
.method-step h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; }
.method-teaser { font-size: 13.5px; color: var(--gray-500); }
.method-answer {
  max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .35s var(--ease), margin-top .35s var(--ease);
  opacity: 0; font-size: 14px; color: var(--gray-500); margin-top: 0;
}
.method-step.open .method-answer { max-height: 200px; opacity: 1; margin-top: 14px; }
.method-step.open .method-teaser { display: none; }

/* ============== INSIGHTS + DEPOIMENTOS (Bloco 6/7) ============== */
.insights-testimonials { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; }
@media (max-width: 992px) { .insights-testimonials { grid-template-columns: 1fr; } }
.insights-col { padding: 130px 50px 130px 0; }
.testimonials-col { padding: 130px 0 130px 50px; border-left: 1px solid rgba(255,255,255,.1); }
@media (max-width: 992px) { .insights-col, .testimonials-col { padding: 70px 0; border-left: none; border-top: 1px solid rgba(255,255,255,.1); } }
@media (max-width: 992px) { .testimonials-col { border-top: 1px solid rgba(255,255,255,.1); } }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .blog-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid, .blog-grid-3 { grid-template-columns: 1fr; } }
.blog-card {
  border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  transition: all .35s var(--ease); display: block;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(217,121,61,.5); }
.blog-card-img { aspect-ratio: 16/10; position: relative; overflow: hidden; background: linear-gradient(150deg, var(--teal-800), var(--teal-900)); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-category { position: absolute; top: 12px; left: 12px; background: rgba(0,20,24,.55); backdrop-filter: blur(4px); font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--sand); padding: 5px 11px; border-radius: 999px; }
.blog-card-body { padding: 18px; }
.blog-card-body h3 { color: var(--white); font-size: 15px; margin-bottom: 8px; font-weight: 700; line-height: 1.35; }
.blog-card-body .date { font-size: 11.5px; color: rgba(255,255,255,.5); }

.testimonial-carousel { position: relative; margin-top: 40px; min-height: 260px; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadein .5s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-slide .icon.quote { width: 30px; height: 30px; color: var(--copper-light); opacity: .5; margin-bottom: 20px; }
.testimonial-slide p.text { font-size: 19px; font-weight: 500; color: var(--white); line-height: 1.5; margin-bottom: 28px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-800); color: var(--sand); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; overflow: hidden; flex-shrink: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-person .name { font-weight: 700; font-size: 14.5px; color: var(--white); }
.testimonial-person .role { font-size: 12.5px; color: rgba(255,255,255,.55); }
.testimonial-nav { display: flex; gap: 10px; margin-top: 32px; }
.testimonial-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: transparent; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.testimonial-nav button:hover { background: var(--copper); border-color: var(--copper); }
.testimonial-nav .icon { width: 16px; height: 16px; }
.testimonial-nav .nav-prev .icon { transform: rotate(180deg); }

/* ============== CTA PREMIUM (Bloco 8) ============== */
.cta-banner { background: linear-gradient(115deg, var(--teal-950) 0%, var(--copper) 130%); color: var(--white); overflow: hidden; position: relative; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-icon-box { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.cta-inner h2 { color: var(--white); font-size: clamp(26px,3vw,34px); margin-bottom: 10px; font-weight: 800; }
.cta-inner p { color: rgba(255,255,255,.82); max-width: 520px; font-size: 16px; }
.cta-banner .btn-primary { background: var(--white); color: var(--copper); box-shadow: none; flex-shrink: 0; }
.cta-banner .btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.cta-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%); top: -200px; right: -100px; }

/* ============== FOOTER ============== */
.site-footer { background: #040f0c; color: rgba(255,255,255,.65); padding-top: 90px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }
.footer-tagline-text { margin-top: 18px; font-size: 14.5px; max-width: 300px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 40px; }
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--white); font-size: 14.5px; margin-bottom: 20px; font-weight: 700; letter-spacing: .02em; }
.footer-col a { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 13px; color: rgba(255,255,255,.62); transition: color .2s ease; }
.footer-col a:hover { color: var(--sand); }
.footer-col p { font-size: 13.5px; margin-bottom: 14px; color: rgba(255,255,255,.55); }
.newsletter-form { display: flex; gap: 8px; margin-top: 6px; }
.newsletter-form input { flex: 1; min-width: 0; padding: 12px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: var(--white); font-size: 13.5px; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { outline: none; border-color: var(--copper-light); }
.newsletter-form button { width: 42px; height: 42px; border-radius: 50%; background: var(--copper); color: var(--white); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background .2s ease; }
.newsletter-form button:hover { background: var(--copper-light); }
.newsletter-flash { font-size: 13.5px; padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,.08); }
.newsletter-flash-error { color: #ffb4a3; }
.newsletter-flash-success { color: var(--sand); }
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--white); }
.dev-credit a { color: var(--copper-light); font-weight: 600; }

.whatsapp-float {
  position: fixed; bottom: 26px; left: 26px; width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.4); z-index: 190; transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .icon { width: 26px; height: 26px; }

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--copper); color: var(--white); border: none; display: none; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-copper); z-index: 190; transition: transform .3s var(--ease);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top .icon { width: 20px; height: 20px; }

/* ============== INNER PAGE HERO ============== */
.page-hero { background: var(--teal-950); color: var(--white); padding: 170px 0 90px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(32px, 4vw, 44px); color: var(--white); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 640px; margin: 18px auto 0; font-size: 17px; }
.breadcrumb { color: rgba(255,255,255,.5); font-size: 13.5px; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.5); } .breadcrumb a:hover { color: var(--white); }

/* Serviços — detalhe */
.detail-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--cream-2); }
.detail-block:last-child { border-bottom: none; }
.detail-block:nth-child(even) .detail-media-box { order: -1; }
.detail-media-box { border-radius: var(--radius-lg); aspect-ratio: 4/3; background: linear-gradient(150deg, var(--sand-light), var(--cream)); display: flex; align-items: center; justify-content: center; color: var(--copper); }
.detail-media-box .icon { width: 84px; height: 84px; opacity: .55; }
.detail-content h2 { font-size: 27px; margin-bottom: 16px; font-weight: 800; }
.detail-content p { color: var(--gray-500); font-size: 16px; margin-bottom: 22px; }
@media (max-width: 800px) { .detail-block { grid-template-columns: 1fr; } .detail-block:nth-child(even) .detail-media-box { order: 0; } }

/* Post individual */
.post-hero-img { aspect-ratio: 21/9; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--teal-800), var(--teal-950)); margin-bottom: 48px; }
.post-content { max-width: 720px; margin: 0 auto; font-size: 17px; color: var(--ink); }
.post-content p { margin-bottom: 20px; }
.post-meta { display: flex; gap: 16px; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: 13.5px; margin-bottom: 10px; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--teal-950); color: var(--white); border-radius: var(--radius-lg); padding: 42px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 26px; font-weight: 800; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 24px; }
.contact-info-item .icon-box { width: 44px; height: 44px; border-radius: 12px; background: rgba(217,121,61,.18); color: var(--copper-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .label { font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.contact-info-item .value { font-size: 14.5px; font-weight: 600; }
.contact-form-card { background: var(--white); border: 1px solid var(--cream-2); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--cream-2); border-radius: 12px; font-family: inherit;
  font-size: 14.5px; background: var(--cream); transition: border-color .2s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--copper); background: var(--white); }
.alert { padding: 15px 18px; border-radius: 12px; font-size: 14.5px; margin-bottom: 22px; }
.alert-success { background: #e2f3e9; color: #1c7c40; }
.alert-error { background: #fbe6e2; color: #b3391a; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 50px; height: 320px; background: var(--cream-2); display: flex; align-items: center; justify-content: center; color: var(--gray-500); }

/* Segmentos-like generic light card grid (reuso em outras páginas) */
.simple-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .simple-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .simple-grid { grid-template-columns: 1fr; } }

.center { text-align: center; }
.mt-40 { margin-top: 40px; }
