/*
Theme Name: Tavares Prestadora de Serviços
Theme URI: https://tavaresind.com.br
Author: Tavares Prestadora de Serviços
Author URI: https://tavaresind.com.br
Description: Tema institucional da Tavares Prestadora de Serviços. Identidade luxo-corporativa com paleta marinho profundo e dourado, tipografia editorial e composição diferenciada.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tavares-prestadora
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta extraída do logo Tavares — marinho profundo + dourado refinado */
  --navy-900: #0A1530;
  --navy-800: #0F1F3D;
  --navy-700: #142950;
  --navy-600: #1E365E;
  --navy-500: #2A4774;
  --navy-50:  #F4F6FB;

  --gold-700: #A8821C;
  --gold-600: #C4992E;
  --gold-500: #D4AF37; /* dourado primário */
  --gold-400: #E5C158;
  --gold-300: #F4C842;
  --gold-200: #F8DA82;
  --gold-100: #FBEFC4;

  --ivory:    #FAF7EF;
  --bone:     #F2EDDF;
  --paper:    #FFFFFF;
  --ink:      #0A1530;
  --ink-soft: #2A2E3A;
  --ash-600:  #4A4F5C;
  --ash-500:  #6B7280;
  --ash-300:  #C9CDD6;
  --ash-200:  #E8EAEF;
  --ash-100:  #F3F4F6;

  --green-whatsapp: #25D366;

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", "Fira Code", ui-monospace, monospace;

  --shadow-sm:   0 2px 6px rgba(10,21,48,0.06);
  --shadow-md:   0 14px 30px -12px rgba(10,21,48,0.18);
  --shadow-lg:   0 30px 60px -20px rgba(10,21,48,0.35);
  --shadow-gold: 0 18px 40px -16px rgba(212,175,55,0.45);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --radius-xl: 36px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s ease, opacity .3s ease;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--gold-300);
  color: var(--navy-900);
}

/* ============================================
   LAYOUT BASE
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-600);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-500);
}

.eyebrow--center::before {
  display: none;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after,
.eyebrow--center::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-500);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.section-title em {
  color: var(--gold-600);
  font-style: italic;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--ash-600);
  max-width: 680px;
  margin-top: 1rem;
}

.section-padding {
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
}

.text-center { text-align: center; }
.mx-auto    { margin-left: auto; margin-right: auto; }

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -16px rgba(212,175,55,0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,247,251,0.4);
}

.btn--ghost:hover {
  background: rgba(245,247,251,0.08);
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.btn--dark {
  background: var(--navy-800);
  color: var(--ivory);
}

.btn--dark:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid var(--navy-800);
}

.btn--outline-dark:hover {
  background: var(--navy-800);
  color: var(--ivory);
}

.btn .arrow {
  transition: transform .3s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--paper);
  color: var(--navy-900);
  padding: 0.55rem 0;
  font-size: 0.825rem;
  border-bottom: 1px solid var(--ash-200);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar__contact a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--navy-900);
  opacity: 1;
}

.top-bar__contact a:hover {
  color: var(--gold-700);
}

.top-bar__contact svg {
  color: var(--gold-600);
}

.top-bar__motto {
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
}

.top-bar__social {
  display: flex;
  gap: 12px;
}

.top-bar__social a {
  color: var(--navy-900);
  opacity: 0.85;
  display: inline-flex;
}

.top-bar__social a:hover {
  color: var(--gold-700);
  opacity: 1;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  color: var(--ivory);
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(10,21,48,0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-logo img,
.site-logo svg,
.site-header .custom-logo,
.site-header .custom-logo-link img {
  height: 64px !important;
  width: auto !important;
  max-width: none !important;
  max-height: 64px !important;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--ivory);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--gold-400);
  transition: width .35s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--gold-700);
}

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

.nav-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--navy-900);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--navy-800);
  padding: 1.5rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.mobile-nav a {
  color: var(--ivory);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245,247,251,0.08);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  text-align: center;
  border-radius: 4px;
  font-weight: 700 !important;
  border: none !important;
  margin-top: 0.5rem;
}

.mobile-nav.is-open {
  display: flex;
}

/* ============================================
   HERO — full-bleed centralizado (estilo Global, fundo Tavares)
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ivory);
}

/* Fundo padrão da Tavares — gerado em CSS/SVG quando não há imagem definida.
   Composto por: gradiente marinho diagonal + padrão de hidrômetros + ondas de água douradas. */
.hero:not([style*="background-image"]) {
  background:
    radial-gradient(120% 70% at 85% 0%,  rgba(212,175,55,0.22) 0%, transparent 55%),
    radial-gradient(90%  60% at 10% 100%, rgba(30,54,94,0.85)  0%, transparent 60%),
    linear-gradient(135deg, #0A1530 0%, #0F1F3D 45%, #142950 100%);
}

/* Padrão de gotas + ondas dourado-arenoso por cima do gradiente */
.hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    /* Gotas grandes */
    radial-gradient(8px 12px at 12% 18%, rgba(244,200,66,0.18), transparent 60%),
    radial-gradient(6px 10px at 78% 32%, rgba(244,200,66,0.14), transparent 60%),
    radial-gradient(4px 7px  at 32% 70%, rgba(244,200,66,0.16), transparent 60%),
    radial-gradient(5px 8px  at 88% 78%, rgba(244,200,66,0.12), transparent 60%),
    radial-gradient(3px 5px  at 22% 92%, rgba(244,200,66,0.18), transparent 60%),
    radial-gradient(7px 11px at 56% 12%, rgba(244,200,66,0.10), transparent 60%),
    /* Ondas / linhas horizontais sutis */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 90px,
      rgba(212,175,55,0.06) 90px,
      rgba(212,175,55,0.06) 91px
    );
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 90%);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-12px, -8px, 0); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,21,48,0.55) 0%,
    rgba(10,21,48,0.65) 60%,
    rgba(10,21,48,0.85) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem 0 5rem;
  max-width: 920px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 2rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 999px;
  background: rgba(212,175,55,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 3rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero h1 span {
  color: var(--gold-300);
  font-style: italic;
  font-weight: 500;
  display: block;
  margin-top: 0.4rem;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--gold-200);
  letter-spacing: 0.02em;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.hero__text {
  font-size: 1.025rem;
  color: rgba(245,247,251,0.85);
  max-width: 640px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero__buttons { flex-direction: row; }
}

.hero .btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow-gold);
}

.hero .btn--primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.hero .btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,247,251,0.5);
}

.hero .btn--outline:hover {
  background: rgba(245,247,251,0.08);
  border-color: var(--gold-300);
  color: var(--gold-300);
}

/* ============================================
   ABOUT — Sobre a Tavares
   ============================================ */
.about {
  background: var(--ivory);
  position: relative;
}

.about::before {
  content: "TAVARES";
  position: absolute;
  top: 6%;
  left: -2%;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(20, 41, 80, 0.04);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}

.about__image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(212,175,55,0.3), transparent 50%),
    repeating-linear-gradient(0deg, transparent 0px, transparent 30px, rgba(212,175,55,0.08) 30px, rgba(212,175,55,0.08) 31px);
}

.about__image-frame .building-illustration {
  position: absolute;
  inset: 15% 15% 0 15%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.about__image-frame .building-illustration .b {
  background: linear-gradient(180deg, var(--gold-200), var(--gold-500));
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  position: relative;
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

.about__image-frame .building-illustration .b::before {
  content: "";
  position: absolute;
  inset: 8% 14%;
  background-image:
    linear-gradient(rgba(10,21,48,0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,21,48,0.45) 1px, transparent 1px);
  background-size: 12px 14px;
}

.about__image-frame .building-illustration .b1 { width: 26%; height: 70%; }
.about__image-frame .building-illustration .b2 { width: 30%; height: 95%; }
.about__image-frame .building-illustration .b3 { width: 20%; height: 55%; }

.about__visual-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--navy-900);
  color: var(--ivory);
  padding: 1.75rem 2rem;
  border-radius: 14px;
  border-left: 4px solid var(--gold-500);
  max-width: 260px;
  box-shadow: var(--shadow-md);
}

.about__visual-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold-300);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.about__visual-card span {
  font-size: 0.85rem;
  color: rgba(245,247,251,0.78);
  letter-spacing: 0.04em;
}

.about__copy p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ash-600);
  margin-bottom: 1.25rem;
}

.about__copy p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  float: left;
  line-height: 0.85;
  margin: 0.35rem 0.65rem 0 0;
  color: var(--gold-600);
  font-weight: 700;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__value {
  padding: 1.25rem;
  border-left: 2px solid var(--gold-500);
  background: rgba(212,175,55,0.06);
}

.about__value strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

.about__value span {
  font-size: 0.875rem;
  color: var(--ash-600);
  line-height: 1.6;
}

/* ============================================
   PILARES (Differentials)
   ============================================ */
.pillars {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.pillars__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pillars__header h2 {
  color: var(--ivory);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,247,251,0.08);
  border-left: 1px solid rgba(245,247,251,0.08);
}

.pillar {
  position: relative;
  padding: 3rem 2rem;
  border-right: 1px solid rgba(245,247,251,0.08);
  border-bottom: 1px solid rgba(245,247,251,0.08);
  transition: background .35s ease;
  cursor: default;
}

.pillar::before {
  content: counter(pillar-counter, decimal-leading-zero);
  counter-increment: pillar-counter;
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-400);
  letter-spacing: 0.18em;
  opacity: 0.6;
}

.pillars__grid {
  counter-reset: pillar-counter;
}

.pillar__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: var(--gold-300);
}

.pillar__icon svg {
  width: 100%;
  height: 100%;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
  color: var(--ivory);
}

.pillar p {
  color: rgba(245,247,251,0.68);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pillar:hover {
  background: rgba(212,175,55,0.06);
}

/* ============================================
   SERVIÇOS — Lista editorial
   ============================================ */
.services {
  background: var(--paper);
  position: relative;
}

.services__header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services__header p {
  color: var(--ash-600);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 460px;
}

.services__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ash-200);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--ash-200);
  align-items: center;
  position: relative;
  transition: padding .35s ease;
  cursor: pointer;
}

.service-row__num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gold-600);
  letter-spacing: 0.1em;
}

.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  color: var(--navy-900);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.service-row__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 280px;
  justify-content: flex-end;
}

.service-row__tag {
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ash-300);
  border-radius: 999px;
  color: var(--ash-600);
  white-space: nowrap;
}

.service-row__arrow {
  width: 56px;
  height: 56px;
  border: 1px solid var(--ash-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  transition: all .35s ease;
  flex-shrink: 0;
}

.service-row:hover {
  padding-left: 1rem;
  padding-right: 1rem;
}

.service-row:hover .service-row__arrow {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: rotate(-45deg);
}

.service-row:hover .service-row__title {
  color: var(--gold-700);
}

/* Service detail blocks (when expanded layout) */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--ash-200);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail__visual {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.service-detail__visual::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 65%);
  border-radius: 50%;
}

.service-detail__visual h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
  margin-bottom: 0.85rem;
  position: relative;
}

.service-detail__visual p {
  color: rgba(245,247,251,0.78);
  position: relative;
}

.service-detail__visual .icon-big {
  width: 72px;
  height: 72px;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  position: relative;
}

.service-detail__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.service-detail__copy p {
  color: var(--ash-600);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-detail__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-detail__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--navy-50);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-900);
}

.service-detail__feature svg {
  flex-shrink: 0;
  color: var(--gold-600);
}

.service-detail--reverse .service-detail__visual {
  order: 2;
}

/* ============================================
   PROCESSO
   ============================================ */
.process {
  background: var(--bone);
  position: relative;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--ash-300);
}

.process__step {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--ash-300);
  border-bottom: 1px solid var(--ash-300);
  background: var(--ivory);
  position: relative;
}

.process__step:last-child {
  border-right: none;
}

.process__step .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold-500);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1rem;
}

.process__step h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}

.process__step p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ash-600);
}

/* ============================================
   CASES / SETORES
   ============================================ */
.sectors {
  background: var(--paper);
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.sector-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--ivory);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s ease, box-shadow .4s ease;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.sector-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.25), transparent 65%);
  pointer-events: none;
}

.sector-card .sector-icon {
  width: 64px;
  height: 64px;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  position: relative;
}

.sector-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ivory);
  margin-bottom: 0.85rem;
  position: relative;
}

.sector-card p {
  color: rgba(245,247,251,0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
}

.sector-card .arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: var(--gold-300);
}

/* ============================================
   DEPOIMENTOS / TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--ivory);
  position: relative;
}

.testimonials__quote {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(212,175,55,0.18);
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
}

.testimonials__container {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--navy-900);
  margin: 3rem 0 2.5rem;
  font-weight: 400;
}

.testimonials__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonials__author-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
}

.testimonials__author-role {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ash-300);
  cursor: pointer;
  transition: all .3s ease;
  border: none;
}

.testimonials__dot.is-active {
  background: var(--gold-500);
  width: 36px;
  border-radius: 4px;
}

/* ============================================
   LOCATION — Onde Estamos
   ============================================ */
.location {
  background: var(--paper);
  position: relative;
}

.location__header {
  margin-bottom: 4rem;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.location__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--ash-200);
  border-left: 3px solid var(--gold-500);
  border-radius: 8px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.location__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.location__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.location__item span,
.location__item a {
  color: var(--ash-600);
  font-size: 0.95rem;
  line-height: 1.55;
}

.location__item a:hover {
  color: var(--gold-700);
}

.location__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.location__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 460px;
  background: var(--ash-100);
  border: 1px solid var(--ash-200);
}

.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .location__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .location__map {
    min-height: 360px;
  }
}

/* ============================================
   CONTACT / CTA FINAL
   ============================================ */
.contact {
  background: var(--navy-900);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 0% 100%, rgba(212,175,55,0.18), transparent 60%),
    radial-gradient(40% 30% at 100% 0%, rgba(30,54,94,0.5), transparent 60%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__copy h2 {
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.5rem;
}

.contact__copy h2 em {
  color: var(--gold-300);
  font-style: italic;
  font-weight: 400;
}

.contact__copy p {
  color: rgba(245,247,251,0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245,247,251,0.1);
}

.contact__list li svg {
  flex-shrink: 0;
  color: var(--gold-300);
  margin-top: 2px;
}

.contact__list a {
  color: var(--ivory);
}

.contact__list a:hover {
  color: var(--gold-300);
}

.contact__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--ivory);
  font-weight: 500;
}

.contact__list span {
  color: rgba(245,247,251,0.7);
  font-size: 0.92rem;
}

.contact__form {
  background: rgba(245,247,251,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,247,251,0.08);
}

.contact__form h3 {
  color: var(--ivory);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact__form p {
  color: rgba(245,247,251,0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(245,247,251,0.06);
  border: 1px solid rgba(245,247,251,0.12);
  border-radius: 6px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all .3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(245,247,251,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  display: none;
}

.form-msg.is-success {
  display: block;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.4);
  color: #BFEBCD;
}

.form-msg.is-error {
  display: block;
  background: rgba(244,67,54,0.15);
  border: 1px solid rgba(244,67,54,0.4);
  color: #F4B7B0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bone);
  color: var(--ink);
  padding-top: 5rem;
  border-top: 1px solid var(--ash-200);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--ash-200);
}

.site-footer__brand img,
.site-footer__brand .custom-logo,
.site-footer__brand .custom-logo-link img {
  height: 76px !important;
  width: auto !important;
  max-width: none !important;
  max-height: 76px !important;
  display: block;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.site-footer__brand p {
  color: var(--ash-600);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 380px;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ash-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  transition: all .3s ease;
}

.site-footer__social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.site-footer__col h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.85rem;
}

.site-footer__col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.site-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__col a,
.site-footer__col li {
  color: var(--ash-600);
  font-size: 0.92rem;
  transition: color .3s ease, padding-left .3s ease;
}

.site-footer__col a:hover {
  color: var(--gold-700);
  padding-left: 6px;
}

.site-footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ash-500);
}

.site-footer__bottom a {
  color: var(--ash-600);
}

.site-footer__bottom a:hover {
  color: var(--gold-700);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: transform .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-whatsapp);
  animation: pulse 2s ease-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   FADE-IN / SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.stagger.is-visible > *           { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .about__inner,
  .services__header,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pillars__grid,
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .sectors__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail--reverse .service-detail__visual { order: -1; }
}

@media (max-width: 768px) {
  .top-bar .container { font-size: 0.78rem; gap: 0.75rem; justify-content: center; }
  .top-bar__motto { display: none; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero__content { padding: 4rem 0; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.6rem); }
  .hero__eyebrow { font-size: 0.7rem; padding: 0.5rem 1rem; }
  .about__visual-card { right: 0; left: auto; max-width: 220px; }
  .pillars__grid,
  .process__grid,
  .sectors__grid,
  .service-detail__features,
  .about__values { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 50px 1fr 56px; gap: 1rem; padding: 1.5rem 0; }
  .service-row__tags { display: none; }
  .site-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .contact__form { padding: 2rem 1.5rem; }
  .about::before { font-size: 6rem; }
}

/* Internas */
.page-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--ivory);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 100%, rgba(212,175,55,0.18), transparent 60%);
  pointer-events: none;
}

.page-banner h1 {
  position: relative;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--ivory);
  margin-bottom: 0.85rem;
}

.page-banner .breadcrumb {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: flex;
  justify-content: center;
  gap: 0.85rem;
}

.page-banner .breadcrumb a {
  color: rgba(245,247,251,0.7);
}

.page-banner .breadcrumb a:hover {
  color: var(--gold-300);
}
