/* -------------------------------------------------------------
   1. DESIGN TOKENS & RESET
------------------------------------------------------------- */
:root {
  --primary: #b0c427;
  --primary-hover: #9eb221;
  --primary-light: #f0f4d7;
  --black: #010101;
  --white: #ffffff;
  --grey: #666b70;
  --grey-light: #e7e9eb;
  --grey-bg: #f7f8f5;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 90px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 4px 14px rgba(18, 24, 28, 0.06);
  --shadow-md: 0 10px 30px rgba(18, 24, 28, 0.09);
  --shadow-lg: 0 20px 50px rgba(18, 24, 28, 0.14);
  --shadow-glow: 0 10px 24px rgba(176, 196, 39, 0.25);
  --transition-fast: 0.2s ease;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(176, 196, 39, 0.28);
  color: #111315;
}

::-moz-selection {
  background: rgba(176, 196, 39, 0.28);
  color: #111315;
}

html {
  scrollbar-color: rgba(176, 196, 39, 0.72) rgba(18, 24, 28, 0.12);
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: rgba(18, 24, 28, 0.08);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(176, 196, 39, 0.9) 0%, rgba(157, 177, 33, 0.9) 100%);
  border-radius: 999px;
  border: 3px solid rgba(18, 24, 28, 0.08);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(190, 210, 52, 1) 0%, rgba(176, 196, 39, 1) 100%);
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

ul,
ol {
  list-style: none;
}

/* -------------------------------------------------------------
   2. GLOBAL LAYOUT & TYPOGRAPHY
------------------------------------------------------------- */
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

.section-grey {
  background-color: var(--grey-bg);
}

.section-dark {
  background-color: var(--black);
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

p {
  color: var(--grey);
}
/* -------------------------------------------------------------
   2.1 PERFORMANCE TUNING
------------------------------------------------------------- */
.section-grey,
.section-dark,
.cta,
#beneficios,
#servicos,
#galeria,
#sobre,
#depoimentos,
#contato {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

@media (prefers-reduced-motion: reduce), (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  .hero::before,
  .btn-shine::after,
  .service-img-wrapper::after,
  .wa-floating-btn,
  .lgpd-floating-trigger {
    animation: none !important;
  }

  .hero::before {
    transform: none;
  }
}

/* -------------------------------------------------------------
   3. TYPOGRAPHY & HEADINGS
------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 auto 16px;
  background: var(--primary-light);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 2.25rem;
  margin: 0 auto 16px;
  position: relative;
  display: block;
}

.section-subtitle {
  color: var(--grey);
  font-size: 1.1rem;
}

.section-dark .section-subtitle {
  color: #a0a0a0;
}

/* -------------------------------------------------------------
   4. BUTTONS & INTERACTION
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--black);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(176, 196, 39, 0.35);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-dark {
  background-color: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

/* Efeito de Brilho Metálico Contínuo */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: none;
  animation: shineAnimation 4.5s infinite ease-in-out;
}

@keyframes shineAnimation {
  0% {
    left: -60%;
  }
  15% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

/* -------------------------------------------------------------
   5. HEADER & NAVIGATION
------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition);
  background-color: #000000; /* Fundo inicial preto */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.9); /* Fundo ao rolar: branco translúcido */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px; /* Aumentado de 52px para melhor legibilidade */
  width: auto;
  filter: brightness(0) invert(1); /* Inverter para branco no fundo inicial preto */
  transition: var(--transition);
}

header.scrolled .logo-img {
  height: 50px; /* Aumentado ao rolar de 44px para 50px */
  filter: none; /* Retornar à cor original WebP no fundo claro */
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--white); /* Cor inicial branca */
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

header.scrolled .nav-link {
  color: var(--black); /* Cor ao rolar preta */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary) !important;
}

.nav-link:hover::after {
  width: 100%;
}

header .btn-header {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Hamburger mobile menu button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 110;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.nav-toggle span {
  display: inline-flex;
  width: 100%;
  height: 2.5px;
  background-color: var(--white); /* Inicial: branco */
  border-radius: 2px;
  transition: var(--transition);
}

header.scrolled .nav-toggle span {
  background-color: var(--black); /* Ao rolar: preto */
}

.nav-toggle.active span {
  background-color: var(--white) !important; /* Menu ativo (gaveta preta): branco */
}

/* -------------------------------------------------------------
   6. HERO SECTION
------------------------------------------------------------- */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(1,1,1,0.35) 0%, rgba(1,1,1,0.85) 100%), 
              url('../img/hero-bg.png') no-repeat center center/cover;
  z-index: 1;
  animation: heroZoom 24s infinite alternate ease-in-out;
  transform-origin: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: var(--primary);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.55);
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------
   7. BENEFITS SECTION
------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 196, 39, 0.2);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50% 50% 50% 0;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--black);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   8. SERVICES SECTION
------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-auto-flow: dense;
}

/* Bento-style layout: the fourth card expands to fill the lower-left space */
.services-grid > :nth-child(4) {
  grid-column: span 2;
}

.service-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
  cursor: pointer;
}

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

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(1, 1, 1, 0.72) 0%, rgba(1, 1, 1, 0) 60%);
  opacity: 0.85;
}

.service-img-wrapper::after {
  content: '';
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 45%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.34) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg) translateX(-160%);
  animation: serviceShine 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.service-body {
  padding: 30px 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 0;
  flex-grow: 1;
  line-height: 1.6;
}

.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
}

.service-card-link:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
}

@keyframes serviceShine {
  0% {
    transform: skewX(-20deg) translateX(-180%);
    opacity: 0;
  }
  18% {
    opacity: 0.85;
  }
  38% {
    transform: skewX(-20deg) translateX(260%);
    opacity: 0;
  }
  100% {
    transform: skewX(-20deg) translateX(260%);
    opacity: 0;
  }
}

/* -------------------------------------------------------------
   9. ABOUT SECTION
------------------------------------------------------------- */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.about-highlight {
  color: var(--primary-light);
  font-weight: 700;
}

.about-text {
  color: #d1d1d6;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #e5e5ea;
}

.about-features li svg {
  color: var(--primary-light);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke-width: 3;
}

.about-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-experience {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: rgba(1, 1, 1, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  color: var(--white);
}

.about-badge-experience h4 {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.about-badge-experience p {
  font-size: 0.8rem;
  width: fit-content;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* -------------------------------------------------------------
   10. GALLERY SECTION
------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background-color: var(--grey-bg);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.filter-btn:hover {
  background-color: rgba(176, 196, 39, 0.1);
  border-color: var(--primary);
  color: var(--primary-hover);
}

.filter-btn.active {
  background-color: var(--primary);
  color: var(--black);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(176, 196, 39, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.78) 100%);
  backdrop-filter: blur(2px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin: 0 auto 16px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-icon {
  transform: translateY(0);
}

.gallery-item-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

.gallery-item-tag {
  font-size: 0.8rem;
  width: fit-content;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.1s;
}

.gallery-item:hover .gallery-item-tag {
  transform: translateY(0);
}

.gallery-load-more {
  display: block;
  width: 100%;
  margin-top: 32px;
  text-align: center;
}

.gallery-load-more-btn {
  min-width: 240px;
  display: inline-flex;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery-load-more-btn {
    width: 100%;
    min-width: 0;
  }
}

/* -------------------------------------------------------------
   11. PROCESS SECTION
------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--grey-light);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--grey-light);
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .process-number {
  border-color: var(--primary);
  color: var(--primary-light);
  box-shadow: 0 0 0 8px rgba(176, 196, 39, 0.15);
  transform: scale(1.05);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--grey);
  font-size: 0.9rem;
  padding: 0 10px;
}

/* -------------------------------------------------------------
   12. TESTIMONIALS SECTION
------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #FFC107;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: #4a4a4a;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.8rem;
  width: fit-content;
  white-space: nowrap;
  color: var(--grey);
}

/* -------------------------------------------------------------
   13. CTA SECTION (CHAMADA FINAL)
------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(214, 190, 111, 0.14) 0%, rgba(214, 190, 111, 0) 28%),
    radial-gradient(circle at 15% 80%, rgba(176, 196, 39, 0.08) 0%, rgba(176, 196, 39, 0) 24%),
    linear-gradient(180deg, rgba(2, 3, 3, 0.32) 0%, rgba(2, 3, 3, 0.88) 100%),
    url('../img/hero-bg.png') no-repeat center center/cover;
  text-align: center;
  color: var(--white);
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.cta::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(315deg, rgba(214, 190, 111, 0.08) 0%, rgba(214, 190, 111, 0) 26%);
  opacity: 0.9;
}

.cta::after {
  width: 520px;
  height: 520px;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(176, 196, 39, 0.12) 0%, rgba(176, 196, 39, 0) 68%);
  filter: blur(20px);
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 58px 52px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.72) 0%, rgba(8, 10, 8, 0.42) 100%),
    rgba(8, 10, 8, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.cta-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 190, 111, 0) 0%, rgba(214, 190, 111, 0.9) 50%, rgba(214, 190, 111, 0) 100%);
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.44rem 1.05rem;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(214, 190, 111, 0.18) 0%, rgba(214, 190, 111, 0.1) 100%);
  border: 1px solid rgba(214, 190, 111, 0.35);
  color: #f5e3a7;
  font-family: var(--font-heading);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.cta h2 {
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 auto 34px;
  max-width: 720px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 240px;
}

/* -------------------------------------------------------------
   14. CONTACT FORM & LAYOUT
------------------------------------------------------------- */
/* -------------------------------------------------------------
   14. CONTACT FORM & LAYOUT
------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info-text p {
  margin: 0;
  line-height: 1.55;
}

.contact-info-text a {
  text-decoration: none;
  font-weight: 500;
}

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  color: var(--black);
}

.form-status {
  display: none;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.form-status.success {
  display: block;
  background: rgba(176, 196, 39, 0.12);
  border: 1px solid rgba(176, 196, 39, 0.35);
  color: #4f5b0b;
}

.form-status.error {
  display: block;
  background: rgba(216, 92, 92, 0.12);
  border: 1px solid rgba(216, 92, 92, 0.35);
  color: #7b1e1e;
}

.form-group {
  margin-bottom: 20px;
}

.privacy-consent-group {
  margin-bottom: 20px;
}

.privacy-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3a3f44;
  cursor: pointer;
  user-select: none;
}

.privacy-consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.privacy-consent-label span {
  display: block;
}

.privacy-consent-label a {
  color: #4f5b0b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-consent-label a:hover {
  color: var(--primary-hover);
}


.hidden-field {
  display: none;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--black);
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  background: #ffffff;
  color: var(--black);
  transition: var(--transition-fast);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(176, 196, 39, 0.15);
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.captcha-label {
  font-weight: 600;
  color: var(--black);
}

.captcha-input {
  width: 90px;
  padding: 14px 12px;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  text-align: center;
  background: #ffffff;
  color: var(--black);
  transition: var(--transition-fast);
}

.captcha-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(176, 196, 39, 0.15);
}

.contact-form-card .btn {
  width: 100%;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.captcha-label {
  font-weight: 600;
  color: var(--black);
}

.captcha-input {
  width: 90px;
  padding: 14px 12px;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  text-align: center;
  background: #ffffff;
  color: var(--black);
  transition: var(--transition-fast);
}

.captcha-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(176, 196, 39, 0.15);
}

.contact-form-card .btn {
  width: 100%;
}

/* -------------------------------------------------------------
   15. FOOTER
------------------------------------------------------------- */
footer {
  background: #050605;
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
}

.footer-logo-svg {
  width: 220px;
  height: auto;
  margin-bottom: 22px;
}

.footer-description {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 18px;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-column h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a,
.footer-bottom-links a,
.footer-credits a {
  color: rgba(255, 255, 255, 0.68);
  transition: var(--transition-fast);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.footer-contact-info svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-action-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.footer-action-whatsapp {
  background: #20c96b;
  border-color: #20c96b;
  color: #07130b;
}

.footer-action-link:hover {
  transform: translateY(-2px);
}

.footer-badge-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-badge-safe {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-badge-safe svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

/* -------------------------------------------------------------
   16. GALLERY LIGHTBOX
------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 32px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: min(100%, 1100px);
  max-height: calc(100vh - 100px);
  text-align: center;
}

.lightbox-img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 180px);
  margin: 0 auto;
  border-radius: var(--border-radius);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  margin-top: 16px;
}

.lightbox-tag {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
}.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  background-color: var(--primary);
  color: var(--black);
  transform: scale(1.05);
}

/* -------------------------------------------------------------
   18. ANIMATION CLASSES (INTERSECTION OBSERVER)
------------------------------------------------------------- */
.animate-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-left-hidden {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-right-hidden {
  opacity: 0;
  transform: translateX(55px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-visible {
  opacity: 1;
  transform: translate(0) !important;
}

/* Delay helpers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* -------------------------------------------------------------
   19. MEDIA QUERIES (MOBILE FIRST COMPLIANT)
------------------------------------------------------------- */

/* Up to Tablet (1024px) */
@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2.85rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .services-grid > :nth-child(4) {
    grid-column: span 1;
  }
  
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img {
    height: 380px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  
  .process-grid::before {
    display: none; /* remove timeline connector on tablet/mobile grids */
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-top {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }
  
  .footer-column:last-child {
    grid-column: span 2;
  }
}

/* Up to Mobile (768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 150px 0 80px; /* Aumentado para dar espaço ao cabeçalho com logo maior */
  }
  
  .hero::before {
    background-position: 75% center !important; /* Ajustar posição da imagem com zoom no mobile */
  }
  
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  /* Mobile Menu Toggle logic */
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: rgba(1, 1, 1, 0.98); /* Gaveta de navegação escura premium */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 16px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav-menu .nav-link {
    color: var(--white) !important;
    font-size: 1.05rem;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Mobile Menu Animating Icon */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  header .btn-header {
    display: none; /* Ocultar CTA do topo no mobile */
  }
  
  .cta-content {
    padding: 40px 20px;
    border-radius: 22px;
  }

  .cta-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }

  .cta-buttons {
    gap: 14px;
  }

  .cta-buttons .btn {
    width: 100%;
    min-width: 0;
  }

  .nav-menu .btn-menu-mobile {
    display: inline-flex !important;
    width: 100%;
    margin-top: 20px;
  }
  
  .benefits-grid,
  .services-grid,
  .gallery-grid,
  .testimonials-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .service-img-wrapper {
    height: 200px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-column:last-child {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-contact-actions {
    width: 100%;
  }

  .footer-bottom-links {
    justify-content: center;
  }
  
  .contact-form-card {
    padding: 30px 20px;
  }
  
.lightbox-close {
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    font-size: 1.8rem;
  }
  
  .lightbox-caption {
    font-size: 0.95rem;
    margin-top: 12px;
  }
}

/* =============================================================
   20. BOTÒO FLUTUANTE DO WHATSAPP
============================================================= */
.wa-floating-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  background: rgba(10, 25, 17, 0.85); /* Fundo verde escuro translúcido para alto contraste */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Efeito vidro */
  border: 1px solid rgba(37, 211, 102, 0.45); /* Borda verde brilhante translúcida */
  border-radius: 100px;
  padding: 12px 24px 12px 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  max-width: 290px;
  box-sizing: border-box;
  text-decoration: none !important;
  animation: pulse-whatsapp 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-floating-btn:hover {
  background: rgba(15, 38, 26, 0.9); /* Fundo ligeiramente mais claro no hover */
  transform: translateY(-5px);
  border-color: rgba(37, 211, 102, 0.8);
  animation-play-state: paused; /* Pausa o pulso no hover */
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.25), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.wa-floating-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.4);
  }
}

.wa-floating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  text-align: left;
  min-width: 0;
}

.wa-text-label {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  overflow-wrap: anywhere;
}

.wa-text-phone {
  color: #25D366;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .wa-floating-btn {
    right: 20px !important;
    bottom: 20px !important;
    left: auto !important;
    padding: 10px 16px 10px 10px;
    gap: 12px;
    max-width: calc(100vw - 40px);
  }
  
  .wa-floating-icon {
    width: 40px;
    height: 40px;
  }
  
  .wa-text-label {
    font-size: 11px;
  }
  
  .wa-text-phone {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .wa-floating-btn {
    right: 15px !important;
    bottom: 15px !important;
    left: auto !important;
    width: auto;
    max-width: calc(100vw - 30px);
    padding: 8px 12px 8px 8px;
    gap: 8px;
  }
  
  .wa-floating-icon {
    width: 36px;
    height: 36px;
  }
  
  .wa-text-label {
    font-size: 9px;
  }
  
  .wa-text-phone {
    font-size: 11px;
  }

  .footer-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-action-link {
    width: 100%;
  }
}


/* =============================================================
   21. LGPD COOKIE CONSENT BANNER & MODAL
============================================================= */
.lgpd-banner {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 9998;
  width: 480px;
  max-width: calc(100vw - 80px);
  background: rgba(10, 25, 17, 0.96); /* Fundo verde escuro translúcido */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(176, 196, 39, 0.25); /* Borda em tom limão sutil */
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lgpd-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lgpd-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lgpd-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lgpd-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(176, 196, 39, 0.15);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(176, 196, 39, 0.35);
  box-shadow: 0 0 15px rgba(176, 196, 39, 0.15);
}

.lgpd-text h4 {
  display: none !important;
}

.lgpd-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #a0a0a5;
}

.lgpd-text p a {
  color: var(--primary-light);
  text-decoration: underline;
  font-weight: 600;
}

.lgpd-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.lgpd-btn-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: auto;
  transition: var(--transition-fast);
}

.lgpd-btn-text:hover {
  color: var(--primary-light);
  background: rgba(255, 255, 255, 0.05);
}

.lgpd-btn-outline {
  padding: 10px 18px;
  font-size: 0.85rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.lgpd-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

.lgpd-btn-accept {
  padding: 10px 18px;
  font-size: 0.85rem;
  background: var(--primary);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(176, 196, 39, 0.2);
}

.lgpd-btn-accept:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(176, 196, 39, 0.35);
}

/* Modal de Configuração de Cookies */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.cookie-modal-card {
  width: 520px;
  max-width: calc(100vw - 40px);
  background: rgba(18, 18, 20, 0.98);
  border: 1px solid rgba(176, 196, 39, 0.2);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal-overlay.active .cookie-modal-card {
  transform: scale(1);
}

.cookie-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-modal-title svg {
  color: var(--primary-light);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #858585;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-modal-close:hover {
  color: var(--white);
}

.cookie-modal-body {
  padding: 24px;
  overflow-y: auto;
  max-height: 60vh;
}

.cookie-modal-desc {
  font-size: 0.9rem;
  color: #a0a0a5;
  margin-bottom: 24px;
  line-height: 1.5;
}

.cookie-option-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cookie-option-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: var(--border-radius);
  gap: 20px;
}

.cookie-option-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  min-width: 0;
  flex: 1;
}

.cookie-option-info h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.cookie-option-info p {
  font-size: 0.8rem;
  width: 100%;
  white-space: normal;
  color: #858585;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

/* Custom CSS Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3a3a3c;
  transition: .3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-slider {
  background-color: rgba(176, 196, 39, 0.4);
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer-note {
  font-size: 0.75rem;
  color: #636366;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.cookie-modal-footer-note a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-modal-footer {
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-modal-btn-text {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: #858585;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 8px;
  margin-right: auto;
  transition: var(--transition-fast);
}

.cookie-modal-btn-text:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.cookie-modal-btn-outline {
  padding: 10px 18px;
  font-size: 0.85rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.cookie-modal-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

.cookie-modal-btn-save {
  padding: 10px 18px;
  font-size: 0.85rem;
  background: var(--primary);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(176, 196, 39, 0.20);
}

.cookie-modal-btn-save:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(176, 196, 39, 0.35);
}

/* Cookie Floating Trigger */
.lgpd-floating-trigger {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 25, 17, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(176, 196, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.lgpd-floating-trigger.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  animation: lgpdPulse 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.lgpd-floating-trigger:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(176, 196, 39, 0.25);
  border-color: var(--primary);
  background: rgba(176, 196, 39, 0.15);
  animation-play-state: paused;
}

@keyframes lgpdPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(176, 196, 39, 0.55), 0 10px 25px rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(176, 196, 39, 0), 0 10px 25px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(176, 196, 39, 0), 0 10px 25px rgba(0, 0, 0, 0.4);
  }
}

/* Responsividade Mobile-First */
@media (max-width: 768px) {
  .lgpd-banner {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    padding: 20px;
  }
  .lgpd-floating-trigger {
    bottom: 20px;
    left: 20px;
  }
  .cookie-modal-card {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  .cookie-modal-body {
    max-height: calc(100vh - 150px);
  }
}

@media (max-width: 480px) {
  .lgpd-content {
    flex-direction: column;
    gap: 12px;
  }
  .lgpd-icon {
    width: 36px;
    height: 36px;
  }
  .lgpd-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .lgpd-btn-text {
    margin-right: 0;
    justify-content: center;
  }
  .lgpd-actions .btn {
    width: 100%;
  }
  .cookie-modal-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-modal-btn-text {
    margin-right: 0;
    justify-content: center;
  }
  .cookie-modal-footer .btn {
    width: 100%;
  }
}




.hero .badge {
  background: rgba(176, 196, 39, 0.96);
  color: var(--black);
  border-color: rgba(176, 196, 39, 0.45);
  box-shadow: 0 8px 22px rgba(176, 196, 39, 0.22);
}

/* -------------------------------------------------------------
   23. VISUAL CONSISTENCY & CONTRAST
------------------------------------------------------------- */
:root {
  --primary-dark: #66720f;
  --grey: #666b70;
}

.badge {
  background: #f0f4d7;
  color: #4f5b0b;
  border-color: #cdd778;
  box-shadow: 0 4px 14px rgba(102, 114, 15, 0.08);
}

.section-dark .badge {
  background: rgba(176, 196, 39, 0.16);
  color: #d8e45b;
  border-color: rgba(176, 196, 39, 0.52);
  box-shadow: none;
}

.hero .badge {
  background: rgba(176, 196, 39, 0.96);
  color: #090a05;
  border-color: rgba(224, 235, 113, 0.7);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.section-title,
.contact-info-column h2 {
  color: #111315;
}

.section-subtitle,
.benefit-card p,
.service-desc,
.process-step p,
.contact-info-text p,
.contact-info-text a {
  color: #62676c;
}

.benefit-card,
.service-card,
.testimonial-card,
.contact-form-card {
  border-color: rgba(18, 24, 28, 0.1);
  box-shadow: 0 8px 24px rgba(18, 24, 28, 0.07);
}

.benefit-icon,
.contact-info-icon {
  background: #eef3cf;
  color: #66720f;
  border: 1px solid #dfe7a7;
}

.about-highlight,
.about-features li svg,
.about-badge-experience h4 {
  color: #d7e35a;
}

.about-badge-experience {
  background: rgba(8, 10, 8, 0.9);
  border-color: rgba(216, 228, 91, 0.28);
}

.filter-btn {
  background: #f3f4ef;
  color: #34383b;
  border-color: #dfe1d9;
}

.filter-btn:hover {
  background: #eef3cf;
  color: #56620c;
}

.process-number {
  color: #555c60;
  border-color: #d9ddd6;
}

.process-step:hover .process-number {
  color: #66720f;
}

.testimonial-avatar {
  background: #eef3cf;
  color: #5b670d;
  border: 1px solid #dfe7a7;
}

.contact-info-text a:hover,
.footer-links a:hover,
.footer-contact-item a:hover,
.footer-bottom-links a:hover,
.footer-credits a:hover {
  color: #d5e154;
}

.footer-contact-info svg,
.footer-badge-safe svg {
  color: #cbd947;
}

.footer-action-instagram {
  background: rgba(176, 196, 39, 0.14);
  color: #d9e65c;
  border-color: rgba(176, 196, 39, 0.36);
}

.gallery-item-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.gallery-item-tag {
  color: #f4f7df;
  background: rgba(5, 7, 5, 0.44);
  border: 1px solid rgba(216, 228, 91, 0.34);
}

.form-input::placeholder {
  color: #858b8f;
}

.form-input:hover {
  border-color: #c5c9c1;
}

@media (max-width: 768px) {
  .badge {
    max-width: calc(100vw - 48px);
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

/* Secondary interfaces use a solid accent so icons and links remain legible. */
.btn-back-home:hover {
  color: #66720f;
}

.lightbox-tag,
.lgpd-icon,
.lgpd-text p a,
.lgpd-btn-text:hover,
.cookie-modal-title svg,
.cookie-modal-footer-note a,
.lgpd-floating-trigger {
  color: #d8e45b;
}



/* -------------------------------------------------------------
   PRIVACY POLICY PAGE
------------------------------------------------------------- */
main.container {
  padding-top: 130px;
  padding-bottom: 80px;
}

.privacy-body {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 42px 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 244, 0.98) 100%);
  border: 1px solid rgba(18, 24, 28, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(18, 24, 28, 0.08);
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(176, 196, 39, 0.12);
  border: 1px solid rgba(176, 196, 39, 0.28);
  color: #4f5b0b;
  font-weight: 700;
  transition: var(--transition-fast);
}

.btn-back-home:hover {
  background: rgba(176, 196, 39, 0.18);
  color: #3d4708;
  transform: translateY(-1px);
}

.privacy-body h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 10px;
  color: #111315;
  letter-spacing: -0.03em;
}

.privacy-meta {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.privacy-content {
  color: #2f3438;
  font-size: 1.02rem;
  line-height: 1.75;
}

.privacy-content p {
  color: inherit;
  margin-bottom: 16px;
}

.privacy-content h2 {
  font-size: 1.35rem;
  margin: 28px 0 10px;
  color: #111315;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 16px;
}

.privacy-content li {
  margin-bottom: 10px;
}

.privacy-content strong {
  color: #111315;
}

.privacy-content a {
  color: #4f5b0b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-content a:hover {
  color: var(--primary-hover);
}

.privacy-body + footer {
  margin-top: 10px;
}

@media (max-width: 768px) {
  main.container {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .privacy-body {
    padding: 28px 20px 24px;
    border-radius: 22px;
  }

  .privacy-content {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}


/* -------------------------------------------------------------
   24. FAQ SECTION
------------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(18, 24, 28, 0.08);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #111315;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary-hover);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  margin-top: 14px;
  color: #62676c;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 20px 18px;
  }
}
