/* Home layout — fundo preto, destaques verdes, Saira Condensed */

.home-page {
  --home-bg: #040607;
  --home-panel: #0b1213;
  --home-panel-soft: #10191a;
  --home-text: #edf6f2;
  --home-muted: #9fb3aa;
  --home-accent: #2fc176;
  --home-accent-2: #23945b;
  --home-border: #1b2b28;
  --home-max: 1200px;
  --home-header-h: 68px;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-size: 20px;
  color: var(--home-text);
  background: var(--home-bg);
  line-height: 1.65;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5 {
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--home-text);
}

.home-page p { color: var(--home-muted); margin: 0 0 12px; }
.home-page a { color: inherit; text-decoration: none; }

.home-page .container {
  max-width: var(--home-max);
  margin-inline: auto;
  padding-inline: 28px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Header ── */
.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}
.home-page .site-header.is-scrolled {
  background: rgba(4, 6, 7, 0.82) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid var(--home-border);
}
.home-page .header-row {
  min-height: var(--home-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.home-page .logo { height: 24px; width: auto; }
.home-page .main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}
.home-page .main-nav > a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #b7c9c1;
  white-space: nowrap;
  transition: color 0.2s;
}
.home-page .main-nav > a:hover { color: var(--home-accent); }
.home-page .header-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.home-page .lang-switch {
  border-color: var(--home-border);
  background: rgba(8, 16, 14, 0.92);
}
.home-page .lang-switch a { color: #8aa498; }
.home-page .lang-switch a.is-active {
  color: var(--home-accent);
  background: rgba(47, 193, 118, 0.14);
  box-shadow: inset 0 0 0 1px rgba(47, 193, 118, 0.35);
}
.home-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.home-page .btn-primary {
  background: var(--home-accent);
  border-color: var(--home-accent-2);
  color: #072110;
}
.home-page .btn-primary:hover {
  background: var(--home-accent-2);
}
.home-page .btn-outline {
  background: transparent;
  border-color: #29423a;
  color: #d8ece2;
}
.home-page .btn-outline:hover {
  border-color: var(--home-accent);
  color: var(--home-accent);
}
.home-page .nav-cta-desktop.btn-outline {
  font-size: 0.98rem;
  padding: 11px 20px;
  white-space: nowrap;
}

/* ── Hero ── */
.home-page .gdd-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-color: var(--home-bg);
  background-image: url("/imagens/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  color: #fff;
  overflow: hidden;
}
.home-page .gdd-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 68% 35%, rgba(47, 193, 118, 0.15), transparent 38%),
    linear-gradient(180deg, rgba(4, 6, 7, 0.75) 0%, rgba(4, 6, 7, 0.92) 100%);
}
.home-page .gdd-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, var(--home-bg));
  pointer-events: none;
}
.home-page .gdd-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: calc(var(--home-header-h) + 140px) 0 140px;
  text-align: center;
}
.home-page .gdd-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.85rem);
  color: #fff;
  max-width: 900px;
  margin: 0 auto 20px;
}
.home-page .gdd-hero h1 .highlight {
  color: var(--home-accent);
}
.home-page .gdd-hero-lead {
  font-size: 1.2rem;
  color: #b8cfc7;
  max-width: 680px;
  margin: 0 auto 12px;
  line-height: 1.75;
}
.home-page .gdd-hero-note {
  font-size: 1.05rem;
  color: #8fa89f;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.home-page .gdd-hero .btn-primary {
  margin-bottom: 0;
}

/* ── Stack strip ── */
@keyframes home-stack-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-page .stack-strip {
  width: 100%;
  padding-block: 2.25rem;
  background: var(--home-bg);
  overflow: hidden;
}

.home-page .stack-carousel {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.home-page .stack-carousel-track {
  display: flex;
  width: max-content;
  animation: home-stack-marquee 42s linear infinite;
}

.home-page .stack-carousel:hover .stack-carousel-track {
  animation-play-state: paused;
}

.home-page .stack-carousel-group {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 8vw, 5.5rem);
  padding-right: clamp(3rem, 8vw, 5.5rem);
}

.home-page .stack-strip-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.5rem, 10vw, 6.5rem);
  height: clamp(4.5rem, 10vw, 6.5rem);
}

.home-page .stack-strip-item i {
  font-size: clamp(3.25rem, 7vw, 5rem) !important;
  line-height: 1;
  color: var(--home-accent) !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .stack-carousel-track {
    animation: none;
  }
}

/* ── Sections ── */
.home-page .gdd-section {
  padding: 80px 0;
  background: var(--home-bg);
}
.home-page .gdd-section--white,
.home-page .gdd-section--porcelain,
.home-page .gdd-section--dark {
  background: var(--home-bg);
}
.home-page .gdd-section-head {
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0 0 48px;
}
.home-page .gdd-section-head h2 {
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  margin-bottom: 16px;
}
.home-page .gdd-section-head p {
  font-size: 1.2rem;
  line-height: 1.75;
}
.home-page .gdd-intro-text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #b8cfc7;
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0 0 40px;
  font-weight: 500;
}

/* ── Why us ── */
.home-page .gdd-why-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: stretch;
}
.home-page .gdd-why-content {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.home-page .gdd-why-media {
  order: 2;
  display: flex;
  min-height: 0;
}
.home-page .gdd-why-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid var(--home-border);
}
.home-page .gdd-why-tagline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--home-text);
  margin: 0 0 28px;
  text-align: left;
}
.home-page .gdd-why-tagline .highlight {
  color: var(--home-accent);
}
.home-page .gdd-why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.home-page .gdd-why-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--home-muted);
}
.home-page .gdd-why-mark {
  color: var(--home-accent);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.55;
}

/* ── Cards ── */
.home-page .gdd-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.home-page .gdd-card {
  background: transparent;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  padding: 28px 24px;
}
.home-page .gdd-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--home-text);
  margin-bottom: 10px;
}
.home-page .gdd-card-text {
  font-size: 1.125rem;
  color: var(--home-muted);
  line-height: 1.7;
}
.home-page .gdd-card-text b { color: var(--home-accent); }
.home-page .gdd-btn-center {
  text-align: center;
  margin-top: 40px;
}
.home-page .gdd-why-content .btn-primary {
  margin-top: 28px;
}

.home-page .gdd-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.home-page .gdd-cap-card {
  background: transparent;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.home-page .gdd-cap-card:hover {
  border-color: rgba(47, 193, 118, 0.4);
}
.home-page .gdd-cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--home-border);
  background: rgba(47, 193, 118, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--home-accent);
}
.home-page .gdd-cap-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.home-page .gdd-cap-card p {
  font-size: 1.1rem;
  flex: 1;
  line-height: 1.7;
}

/* ── Team ── */
.home-page .gdd-team-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.home-page .gdd-leader-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.home-page .gdd-leader-item {
  display: flex;
  flex-direction: column;
}
.home-page .gdd-leader-photo {
  width: 100%;
  aspect-ratio: 257 / 318;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 1px solid var(--home-border);
  display: block;
}
.home-page .gdd-leader-text {
  padding-top: 16px;
}
.home-page .gdd-leader-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--home-text);
  margin: 0 0 6px;
}
.home-page .gdd-leader-role {
  font-size: 1.05rem;
  color: var(--home-muted);
  margin: 0 0 14px;
}
.home-page .gdd-leader-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-page .gdd-leader-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--home-border);
  color: var(--home-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.home-page .gdd-leader-contact a:hover {
  color: var(--home-accent);
  border-color: var(--home-accent);
  background: rgba(47, 193, 118, 0.08);
}
.home-page .gdd-team-text h2 {
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  margin: 0 0 20px;
  text-align: left;
}
.home-page #quem-somos .gdd-team-layout {
  margin-top: 0;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 40px;
}
.home-page #quem-somos .gdd-leader-list {
  gap: 32px;
}
.home-page .gdd-team-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--home-muted);
}
.home-page .gdd-team-text .btn { margin-top: 4px; }

/* ── Testimonial ── */
.home-page .gdd-testimonial {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 28px;
  align-items: start;
  background: transparent;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  padding: 28px;
  width: 100%;
}
.home-page .gdd-testimonial-photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 280px;
  border: 1px solid var(--home-border);
}
.home-page .gdd-case-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--home-text);
  margin: 0 0 6px;
}
.home-page .gdd-case-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--home-accent);
  margin: 0 0 12px;
}
.home-page .gdd-case-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0 0 20px;
}
.home-page .gdd-testimonial-quote {
  font-size: 1.2rem;
  color: #dcefe6;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 12px;
}
.home-page .gdd-testimonial-meta {
  font-size: 1.05rem;
  color: var(--home-muted);
}
.home-page .gdd-testimonial-metric {
  text-align: center;
  padding: 16px;
  min-width: 200px;
  max-width: 240px;
}
.home-page .gdd-testimonial-metric strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--home-accent);
  margin-bottom: 10px;
}
.home-page .gdd-testimonial-metric span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--home-muted);
}

/* ── Steps ── */
.home-page .gdd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-page .gdd-step {
  text-align: center;
  padding: 28px 20px;
  background: transparent;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  height: 100%;
}
.home-page .gdd-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--home-accent);
  color: var(--home-accent);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.home-page .gdd-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.home-page .gdd-step p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── Contact ── */
.home-page .gdd-contact-section {
  overflow: hidden;
}
.home-page .gdd-contact-shell {
  text-align: center;
}
.home-page .gdd-contact-intro {
  width: 100%;
  max-width: none;
  margin: 0 0 36px;
}
.home-page .gdd-contact-intro h2 {
  font-size: clamp(2.5rem, 5.5vw, 3.85rem);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: none;
}
.home-page .gdd-contact-intro h2 .highlight {
  color: var(--home-accent);
}
.home-page .gdd-contact-intro p {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0;
  max-width: none;
}
.home-page .gdd-form-box {
  background: var(--home-panel-soft);
  border: 1px solid var(--home-border);
  border-radius: 12px;
  padding: 28px 24px;
}
.home-page .gdd-form-box--cta {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
}
.home-page .gdd-form-box--cta .form-fields {
  margin-bottom: 16px;
}
.home-page .gdd-form-box--cta .btn-primary {
  font-size: 1.1rem;
  padding: 15px 26px;
}
.home-page .field label {
  font-size: 1rem;
  color: #a6bbb1;
}
.home-page .field label sup { color: var(--home-accent); }
.home-page input,
.home-page textarea {
  border: 1px solid #1f322c;
  border-radius: 10px;
  background: #08100e;
  color: #eef8f3;
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}
.home-page input:focus,
.home-page textarea:focus {
  outline: none;
  border-color: var(--home-accent-2);
  box-shadow: 0 0 0 3px rgba(47, 193, 118, 0.15);
}
.home-page .phone-input {
  border: 1px solid #1f322c;
  border-radius: 10px;
  background: #08100e;
  overflow: hidden;
}
.home-page .phone-prefix {
  border-right: 1px solid #1f322c;
  color: #a6bbb1;
  padding: 0 12px;
}
.home-page .phone-input input { border: none; background: transparent; }
.home-page .phone-input:focus-within {
  border-color: var(--home-accent-2);
  box-shadow: 0 0 0 3px rgba(47, 193, 118, 0.15);
}
.home-page .form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.home-page .form-privacy {
  font-size: 0.95rem;
  color: #7a9488;
  margin-top: 12px;
  text-align: center;
}
.home-page .btn-full { width: 100%; justify-content: center; }

/* ── Footer minimal ── */
.home-page .site-footer {
  background: var(--home-bg);
  padding: 32px 0 28px;
}
.home-page .footer-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.home-page .footer-minimal small {
  color: #a0b5ab;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.home-page .footer-social {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
}
.home-page .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--home-border);
  color: var(--home-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.home-page .footer-social a:hover {
  color: var(--home-accent);
  border-color: var(--home-accent);
  background: rgba(47, 193, 118, 0.08);
}

/* ── Nav mobile ── */
.home-page .site-header .nav-toggle {
  border-color: var(--home-border);
  background: none;
}
.home-page .site-header .nav-toggle span { background: #d8ece2; }
.home-page .lang-switch-mobile { display: none; }
.home-page .nav-cta-mobile { display: none !important; }

@media (max-width: 1024px) {
  .home-page .gdd-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page .gdd-steps { grid-template-columns: repeat(2, 1fr); }
  .home-page .gdd-team-layout,
  .home-page .gdd-why-layout { grid-template-columns: 1fr; gap: 36px; }
  .home-page .gdd-why-media img {
    height: auto;
    min-height: 0;
    object-fit: unset;
  }
  .home-page .gdd-leader-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .home-page .gdd-testimonial { grid-template-columns: 1fr; }
  .home-page .gdd-testimonial-metric {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .home-page { font-size: 18px; }
  .home-page .container { padding: 0 20px; }
  .home-page {
    --home-header-h: 52px;
  }
  .home-page .main-nav {
    display: none;
    position: fixed;
    top: var(--home-header-h);
    left: 0;
    right: 0;
    background: rgba(4, 6, 7, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--home-border);
    z-index: 99;
  }
  .home-page .main-nav.is-open { display: flex; }
  .home-page .nav-toggle { display: flex; }
  .home-page .nav-cta-desktop { display: none; }
  .home-page .lang-switch-desktop { display: none; }
  .home-page .lang-switch-mobile { display: inline-flex; }
  .home-page .nav-cta-mobile {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
  }
  .home-page .gdd-cards-3,
  .home-page .gdd-cap-grid,
  .home-page .gdd-steps { grid-template-columns: 1fr; }
  .home-page .gdd-section { padding: 56px 0; }
  .home-page .gdd-hero { min-height: auto; }
  .home-page .gdd-hero-inner { padding: calc(var(--home-header-h) + 72px) 0 72px; }
  .home-page .main-nav > a { font-size: 1.2rem; }
  .home-page .gdd-leader-list { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .home-page #quem-somos .gdd-team-layout { grid-template-columns: 1fr; }
  .home-page .gdd-team-text { text-align: center; }
  .home-page .gdd-team-text h2 { text-align: center; }
  .home-page .gdd-team-text .btn { width: 100%; max-width: 320px; }
}
