:root {
  --primary: #00a862;
  --primary-dark: #00824c;
  --dark: #0e0e0e;
  --gray: #6b6b6b;
  --bg: #f4f4f4;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

body {
  background: var(--bg);
  color: var(--dark);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.container {
  max-width: 1140px;
  padding: 0 16px;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: invert(1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

nav a {
  color: #f0f0f0;
  padding: 6px 0;
}

nav a:hover {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 168, 98, 0.4);
  align-items: center;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 168, 98, 0.5);
}

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

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #f0f0f0;
  border-radius: 999px;
}

/* HERO */
.hero {
  padding: 72px 0 56px;
  background: radial-gradient(circle at top left, #1b1b1b 0, #000 45%, #111 100%);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero-tag span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  margin-bottom: 14px;
}

.hero h1 strong {
  color: var(--primary);
}

.hero p {
  color: #e1e1e1;
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.85rem;
  color: #d0d0d0;
  margin-top: 16px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-highlights span::before {
  content: "✓";
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: bold;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-cta-note {
  font-size: 0.85rem;
  color: #d0d0d0;
}

.hero-card {
  background: #111;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card h2 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 0.85rem;
  color: #e1e1e1;
  margin-bottom: 16px;
}

.hero-card form {
  display: grid;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.field label {
  color: #cccccc;
}

.field input,
.field select,
.field textarea {
  border-radius: 999px;
  border: 1px solid #3a3a3a;
  padding: 10px 12px;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
  background: #050505;
  color: var(--white);
}

.field textarea {
  border-radius: 10px;
  min-height: 80px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 168, 98, 0.3);
}

.form-note {
  font-size: 0.75rem;
  color: #b0b0b0;
  margin-top: 4px;
}

/* SECTIONS */
section {
  padding: 56px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header.align-left {
  text-align: left;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.section-header p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
}

#servicos,
#sobre,
#contato {
  background: var(--bg);
}

.testimonials {
  background: #111;
  color: var(--white);
}

/* Fix cores Depoimentos */
.testimonials .section-header h2 {
  color: var(--primary);
}

.testimonials .section-header p {
  color: #cccccc;
}

/* Serviços */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  font-size: 0.93rem;
  border-top: 3px solid var(--primary);
}

.card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(0, 168, 98, 0.08);
  color: var(--primary-dark);
  margin-bottom: 8px;
}

/* SOBRE / WHY */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.list-check {
  display: grid;
  gap: 10px;
  font-size: 0.93rem;
  margin-top: 12px;
}

.list-check span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
}

.list-check span::before {
  content: "●";
  font-size: 0.85rem;
  color: var(--primary);
}

.why-box {
  background: var(--dark);
  color: #f5f5f5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  font-size: 0.9rem;
  border: 1px solid #272727;
}

.why-box strong {
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.bio-photo-wrapper {
  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
}

.bio-photo {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #191919;
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  border: 1px solid #292929;
}

.testimonial-card p {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.testimonial-author {
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  color: var(--primary);
}

/* CTA */
.cta-section {
  background: var(--bg);
  text-align: center;
}

.cta-box {
  background: radial-gradient(circle at top, #00a862 0, #00824c 45%, #000 100%);
  color: #f5f7ff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cta-box h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.cta-box p {
  font-size: 0.95rem;
  margin-bottom: 18px;
  max-width: 520px;
  margin-inline: auto;
}

/* Contato */
.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  background: var(--white);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border 0.15s ease,
    background 0.15s ease;
}

.contact-chip .icon {
  font-size: 1.2rem;
}

.contact-chip strong {
  display: block;
  font-size: 0.95rem;
}

.contact-chip small {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
}

.contact-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.contact-chip.whatsapp {
  border-color: rgba(0, 168, 98, 0.4);
}

.contact-chip.whatsapp:hover {
  background: rgba(0, 168, 98, 0.04);
}

.contact-chip.instagram:hover,
.contact-chip.threads:hover,
.contact-chip.tiktok:hover {
  background: #f7f7f7;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Footer */
footer {
  padding: 18px 0 24px;
  border-top: 1px solid #1f1f1f;
  background: #000;
  font-size: 0.82rem;
  color: #c0c0c0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c0c0c0;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Animações */
[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay] {
  transition-delay: calc(0.15s + var(--delay, 0s));
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 56px;
  }

  .nav-cta {
    display: none;
  }

  nav {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  nav.open {
    max-height: 260px;
  }

  nav ul {
    flex-direction: column;
    padding: 10px 16px 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .contact-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .bio-photo-wrapper {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .grid-3,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-box {
    border-radius: 16px;
  }
}
/* SESSÃO SOBRE — LADO A LADO */
.sobre-linha {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.sobre-foto img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  border: 3px solid var(--primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  object-fit: cover;
}

.sobre-texto h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.sobre-texto p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .sobre-linha {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .sobre-foto {
    display: flex;
    justify-content: center;
  }
}


