/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #050505;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* VARIÁVEIS */
:root {
  --zc-green: #00985d;
  --zc-green-soft: #0fbf75;
  --zc-bg: #050505;
  --zc-bg-alt: #090909;
  --zc-bg-elevated: #101010;
  --zc-border-subtle: rgba(255, 255, 255, 0.06);
  --zc-text-main: #ffffff;
  --zc-text-soft: #c7c7c7;
  --zc-text-muted: #969696;
  --zc-radius-lg: 18px;
  --zc-radius-pill: 999px;
  --zc-shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.7);
  --zc-container-width: 1120px;
}

.zc-container {
  width: 100%;
  max-width: var(--zc-container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ANIMAÇÕES DE ENTRADA */
.zc-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--zc-reveal-delay, 0s);
}

.zc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.zc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.98),
    rgba(5, 5, 5, 0.9),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.zc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.zc-logo img {
  height: 36px;
}

.zc-nav {
  position: relative;
}

.zc-nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}

.zc-nav-list a {
  color: var(--zc-text-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.zc-nav-list a:hover {
  color: var(--zc-text-main);
  transform: translateY(-1px);
}

.zc-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 15, 0.9);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.zc-nav-toggle span {
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

/* BOTÕES */
.zc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--zc-radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease,
    box-shadow 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}

.zc-btn--primary {
  background: linear-gradient(135deg, var(--zc-green), var(--zc-green-soft));
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 152, 93, 0.45);
}

.zc-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0, 152, 93, 0.6);
}

.zc-btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--zc-text-main);
}

.zc-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.zc-btn--outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--zc-text-main);
  padding-inline: 1.4rem;
}

.zc-btn--outline:hover {
  border-color: var(--zc-green);
  color: #ffffff;
}

.zc-btn--light {
  background: #ffffff;
  color: #050505;
}

.zc-btn--light:hover {
  background: #e6fff4;
}

/* HERO */
.zc-hero {
  padding: 5.5rem 0 3.5rem;
  background: radial-gradient(circle at top left, #00985d1a 0, transparent 45%),
    radial-gradient(circle at bottom right, #00ffb220 0, transparent 55%),
    #050505;
}

.zc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.zc-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--zc-green-soft);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.zc-hero-copy h1 {
  font-size: clamp(2.4rem, 3.4vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 1rem;
}

.zc-hero-copy h1 span {
  color: var(--zc-green-soft);
}

.zc-hero-sub {
  color: var(--zc-text-soft);
  max-width: 32rem;
  margin-bottom: 1.7rem;
}

.zc-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.zc-hero-note {
  font-size: 0.85rem;
  color: var(--zc-text-muted);
}

.zc-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.zc-hero-metrics div {
  min-width: 7.5rem;
}

.zc-hero-metrics strong {
  display: block;
  font-size: 1.4rem;
  color: #ffffff;
}

.zc-hero-metrics span {
  font-size: 0.85rem;
  color: var(--zc-text-muted);
}

.zc-hero-card {
  background: radial-gradient(circle at top, #00985d33 0, #090909 52%);
  border-radius: 24px;
  padding: 1.9rem 1.8rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--zc-shadow-soft);
}

.zc-hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.zc-hero-card ul {
  color: var(--zc-text-soft);
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
}

.zc-hero-card li + li {
  margin-top: 0.45rem;
}

/* SEÇÕES GENÉRICAS */
.zc-section {
  padding: 4.5rem 0;
}

.zc-section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.zc-section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}

.zc-section-header p {
  color: var(--zc-text-soft);
  font-size: 0.96rem;
}

/* SERVIÇOS */
.zc-section--services {
  background: linear-gradient(to bottom, #050505 0, #050505 40%, #090909 100%);
}

.zc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.zc-card {
  background: radial-gradient(circle at top, #ffffff08 0, #101010 60%);
  border-radius: var(--zc-radius-lg);
  padding: 1.6rem 1.5rem 1.55rem;
  border: 1px solid var(--zc-border-subtle);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.zc-card h3 {
  font-size: 1.15rem;
}

.zc-card p {
  font-size: 0.92rem;
  color: var(--zc-text-soft);
}

.zc-card-list {
  font-size: 0.9rem;
  color: var(--zc-text-soft);
  padding-left: 0.4rem;
}

.zc-card-list li {
  position: relative;
  padding-left: 1.05rem;
}

.zc-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--zc-green-soft);
}

.zc-card-list li + li {
  margin-top: 0.35rem;
}

.zc-link-cta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--zc-green-soft);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.zc-link-cta::after {
  content: "↗";
  font-size: 0.8rem;
}

.zc-link-cta:hover {
  text-decoration: underline;
}

/* POR QUE NOS ESCOLHER */
.zc-section--why {
  background: radial-gradient(circle at top left, #00985d22 0, transparent 55%),
    #050505;
}

.zc-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.zc-why-copy h2 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.zc-why-copy p {
  color: var(--zc-text-soft);
  margin-bottom: 1.4rem;
}

.zc-why-list {
  margin-bottom: 1.7rem;
}

.zc-why-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--zc-text-soft);
}

.zc-why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zc-green), var(--zc-green-soft));
}

.zc-why-list li + li {
  margin-top: 0.4rem;
}

.zc-why-panel {
  background: radial-gradient(circle at top, #ffffff09 0, #101010 55%);
  border-radius: 22px;
  padding: 1.8rem 1.7rem 1.6rem;
  border: 1px solid var(--zc-border-subtle);
}

.zc-why-highlight h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.zc-why-highlight p {
  color: var(--zc-text-soft);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.zc-why-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.zc-stat-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--zc-text-muted);
  margin-bottom: 0.2rem;
}

.zc-stat-value {
  font-size: 0.94rem;
  color: var(--zc-text-soft);
}

/* CTA FINAL */
.zc-section--cta {
  background: radial-gradient(circle at top, #00985d26 0, #090909 55%);
}

.zc-cta-inner {
  border-radius: 26px;
  padding: 2.4rem 2rem;
  background: linear-gradient(135deg, #00985d, #00b971);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.7rem;
  box-shadow: 0 22px 70px rgba(0, 152, 93, 0.6);
}

.zc-cta-copy {
  max-width: 34rem;
}

.zc-cta-copy .zc-kicker {
  color: #e2ffef;
}

.zc-cta-copy h2 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.zc-cta-copy p {
  color: #eafff5;
  font-size: 0.95rem;
}

.zc-section--cta .zc-btn--light {
  background: #ffffff;
  color: #0b2418;
}

.zc-section--cta .zc-btn--light:hover {
  background: #f3fff9;
}

/* CONTATO */
.zc-section--contact {
  background: #050505;
}

.zc-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: flex-start;
}

.zc-contact-copy h2 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.zc-contact-copy p {
  color: var(--zc-text-soft);
  margin-bottom: 1.3rem;
}

.zc-contact-info {
  color: var(--zc-text-soft);
  font-size: 0.95rem;
}

.zc-contact-info li + li {
  margin-top: 0.35rem;
}

.zc-form {
  background: #0b0b0b;
  border-radius: 20px;
  padding: 1.8rem 1.6rem 1.6rem;
  border: 1px solid var(--zc-border-subtle);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.75);
}

.zc-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.zc-form-field {
  margin-bottom: 0.9rem;
}

.zc-form-field label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--zc-text-muted);
  margin-bottom: 0.35rem;
}

.zc-form-field input,
.zc-form-field select,
.zc-form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.75rem;
  font-size: 0.92rem;
  background: rgba(12, 12, 12, 0.94);
  color: #ffffff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

.zc-form-field input::placeholder,
.zc-form-field textarea::placeholder {
  color: var(--zc-text-muted);
}

.zc-form-field input:focus,
.zc-form-field select:focus,
.zc-form-field textarea:focus {
  border-color: var(--zc-green-soft);
  box-shadow: 0 0 0 1px rgba(0, 152, 93, 0.45);
  background: #101010;
}

.zc-form textarea {
  resize: vertical;
  min-height: 110px;
}

.zc-form-feedback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.zc-form-feedback--ok {
  color: var(--zc-green-soft);
}

.zc-form-feedback--erro {
  color: #e74c3c;
}

.zc-form-footnote {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--zc-text-muted);
}

/* FOOTER */
.zc-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.zc-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.4rem 1.5rem 1.7rem;
}

.zc-logo--footer img {
  height: 32px;
}

.zc-footer-brand p {
  color: var(--zc-text-soft);
  font-size: 0.88rem;
  margin-top: 0.7rem;
  max-width: 18rem;
}

.zc-footer-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.86rem;
}

.zc-footer-links h4 {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.zc-footer-links ul {
  color: var(--zc-text-soft);
}

.zc-footer-links li + li {
  margin-top: 0.3rem;
}

.zc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.zc-footer-bottom p {
  font-size: 0.8rem;
  color: var(--zc-text-muted);
  padding: 0.7rem 1.5rem 1.2rem;
}

/* RESPONSIVIDADE */
@media (max-width: 960px) {
  .zc-hero-grid {
    grid-template-columns: minmax(0, 1.4fr);
  }


  .zc-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zc-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .zc-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .zc-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .zc-container {
    padding-inline: 1.25rem;
  }

  .zc-header-inner {
    padding: 0.75rem 1.25rem;
    padding-top: max(0.75rem, env(safe-area-inset-top));
  }

  .zc-logo img {
    height: 30px;
  }

  .zc-nav-toggle {
    display: flex;
  }

  .zc-nav-list {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0px));
    left: 1rem;
    right: 1rem;
    background: rgba(10, 10, 10, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 50;
  }

  .zc-nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .zc-nav-list a {
    padding: 0.65rem 0.5rem;
    font-size: 0.95rem;
  }

  .zc-nav-open {
    overflow: hidden;
  }

  .zc-nav-list .zc-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.75rem 1.25rem;
  }

  /* Hero mobile */
  .zc-hero {
    padding: 3rem 0 2.5rem;
    padding-top: max(3rem, env(safe-area-inset-top));
  }

  .zc-hero-grid {
    gap: 1.5rem;
  }

  .zc-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .zc-hero-copy h1 {
    font-size: 1.85rem;
    line-height: 1.15;
    margin-bottom: 0.85rem;
  }

  .zc-hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .zc-hero-actions .zc-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 0.9rem 1.25rem;
  }

  .zc-hero-metrics {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .zc-hero-metrics div {
    min-width: 5.5rem;
  }

  .zc-hero-metrics strong {
    font-size: 1.2rem;
  }

  .zc-hero-metrics span {
    font-size: 0.78rem;
  }

  .zc-hero-card {
    padding: 1.4rem 1.35rem;
  }

  .zc-hero-card h2 {
    font-size: 1.1rem;
  }

  .zc-hero-card .zc-btn {
    width: 100%;
    justify-content: center;
  }

  /* Seções mobile */
  .zc-section {
    padding-block: 2.75rem;
  }

  .zc-section-header {
    margin-bottom: 2rem;
  }

  .zc-section-header h2 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .zc-section-header p {
    font-size: 0.9rem;
  }

  .zc-services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .zc-card {
    padding: 1.35rem 1.25rem;
  }

  .zc-card h3 {
    font-size: 1.05rem;
  }

  .zc-card p,
  .zc-card-list {
    font-size: 0.88rem;
  }

  /* Por que nos escolher mobile */
  .zc-why-copy h2 {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .zc-why-copy p,
  .zc-why-list li {
    font-size: 0.9rem;
  }

  .zc-why-copy .zc-btn {
    width: 100%;
    justify-content: center;
  }

  .zc-why-panel {
    padding: 1.4rem 1.35rem;
  }

  /* CTA mobile - recuo lateral igual ao card escuro */
  .zc-section--cta {
    padding-inline: 1.25rem;
  }

  .zc-cta-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.75rem 1.35rem;
    gap: 1.25rem;
  }

  .zc-cta-copy h2 {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .zc-cta-copy p {
    font-size: 0.9rem;
  }

  .zc-section--cta .zc-btn--light {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* Contato mobile */
  .zc-contact-grid {
    gap: 2rem;
  }

  .zc-contact-copy h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .zc-contact-copy p {
    font-size: 0.9rem;
  }

  .zc-contact-info {
    font-size: 0.9rem;
  }

  .zc-form {
    padding: 1.4rem 1.25rem;
  }

  .zc-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .zc-form-field input,
  .zc-form-field select,
  .zc-form-field textarea {
    font-size: 16px; /* Evita zoom no iOS */
  }

  .zc-form button[type="submit"] {
    width: 100%;
    padding: 0.9rem;
  }

  /* Footer mobile */
  .zc-footer-inner {
    flex-direction: column;
    padding: 2rem 1.25rem 1.5rem;
    gap: 1.5rem;
  }

  .zc-footer-brand p {
    font-size: 0.85rem;
    max-width: none;
  }

  .zc-footer-links {
    flex-direction: column;
    gap: 1.25rem;
  }

  .zc-footer-bottom p {
    padding: 0.85rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .zc-container {
    padding-inline: 1rem;
  }

  .zc-header-inner {
    padding: 0.65rem 1rem;
  }

  .zc-hero-copy h1 {
    font-size: 1.6rem;
  }

  .zc-section-header h2 {
    font-size: 1.35rem;
  }

  .zc-cta-copy h2 {
    font-size: 1.2rem;
  }

  .zc-contact-copy h2 {
    font-size: 1.25rem;
  }

  .zc-cta-inner {
    padding: 1.5rem 1rem;
  }

  .zc-btn {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }
}

