/* ============================================================
   GRUPO ÁGAPE — LANDING PAGE
   Cores: Amarelo #fbe115 | Vermelho #d02313 | Preto #141515 | Branco #ffffff
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #141515;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --yellow: #fbe115;
  --red: #d02313;
  --black: #141515;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f3f3f3;
  --gray-200: #e8e8e8;
  --gray-300: #d0d0d0;
  --gray-600: #666666;
  --gray-700: #444444;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --transition: .25s ease;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background-color: #e8d010;
  border-color: #e8d010;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251,225,21,.4);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background-color: #20bd5a;
  border-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover {
  background-color: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---------- SECTION COMMON ---------- */
.section-tag {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--black);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   BLOCO 1 — HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(251, 225, 21, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: background-color .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background-color: rgba(251, 225, 21, 1);
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  color: rgba(20, 21, 21, .75);
  font-size: .88rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--black);
  background: rgba(0,0,0,.07);
}

.header-nav a.active {
  color: var(--black);
  font-weight: 700;
}

/* Hambúrguer mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(0,0,0,.08);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.header-cta {
  padding: 11px 22px;
  font-size: .88rem;
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.header-cta:hover {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* ============================================================
   BLOCO 2 — HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-image: url('https://www.genspark.ai/api/files/s/NEYdfQrc');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,21,21,.88) 0%, rgba(20,21,21,.72) 60%, rgba(208,35,19,.25) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-tag {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--black);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  color: var(--yellow);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
}

.hero-stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: background var(--transition);
}

.hero-stat-card:hover {
  background: rgba(251,225,21,.12);
  border-color: rgba(251,225,21,.4);
}

.hero-stat-icon {
  color: var(--yellow);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hero-stat-value {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-stat-label {
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 400;
}

/* ============================================================
   BLOCO 3 — SERVIÇOS
   ============================================================ */
.services-section {
  background-color: var(--gray-50);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--yellow);
  color: var(--black);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 100px;
}

.service-card-body {
  padding: 28px 32px 32px;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card-text {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: .9rem;
  transition: gap var(--transition), color var(--transition);
}

.service-card-link:hover {
  color: #b01e0f;
  gap: 12px;
}

/* ============================================================
   BLOCO 4 — PORTFÓLIO
   ============================================================ */
.portfolio-section {
  background-color: var(--white);
  padding: 100px 0;
}

.portfolio-section .section-title {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.portfolio-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.06);
}

.portfolio-tag-img {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 12px;
  border-radius: 100px;
}

.portfolio-card-body {
  padding: 22px 24px 26px;
}

.portfolio-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.portfolio-card-text {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   BLOCO 5 — DIFERENCIAIS
   ============================================================ */
.diferenciais-section {
  background-color: var(--black);
  padding: 100px 0;
}

.diferenciais-section .section-tag {
  background-color: var(--yellow);
}

.diferenciais-section .section-title {
  color: var(--white);
}

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

.diferencial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.diferencial-card:hover {
  background: rgba(251,225,21,.06);
  border-color: rgba(251,225,21,.3);
  transform: translateY(-4px);
}

.diferencial-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(251,225,21,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--yellow);
  transition: background var(--transition);
}

.diferencial-card:hover .diferencial-icon {
  background: rgba(251,225,21,.2);
}

.diferencial-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.diferencial-text {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ============================================================
   BLOCO 6 — FORMULÁRIO DE CONTATO
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* Info lateral */
.contact-info {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 28px;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-700);
}

.contact-benefits li i {
  color: #25d366;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  padding: 12px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
  width: fit-content;
}

.contact-channel-link i {
  font-size: 1.1rem;
  color: var(--red);
}

.contact-channel-link:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-sm);
}

/* Formulário */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.required {
  color: var(--red);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--black);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23444' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group input::placeholder {
  color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(251,225,21,.2);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}

/* Submit button loading state */
.form-submit-btn {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-size: 1rem;
  padding: 16px;
  margin-top: 4px;
  border-radius: var(--radius-sm);
}

.form-submit-btn:hover {
  background-color: #b01e0f;
  border-color: #b01e0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208,35,19,.35);
}

.form-submit-btn .btn-loading {
  display: none;
}

.form-submit-btn.loading .btn-text {
  display: none;
}

.form-submit-btn.loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

/* Mensagem de sucesso */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.form-success[hidden] {
  display: none;
}

.form-success-icon {
  font-size: 3.5rem;
  color: #25d366;
  line-height: 1;
}

.form-success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
}

.form-success-text {
  font-size: .98rem;
  color: var(--gray-600);
  max-width: 340px;
  line-height: 1.65;
}

/* ============================================================
   BLOCO 7 — CTA FINAL
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #1f1f1f 50%, #1a0a09 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,35,19,.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,225,21,.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* ============================================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
  animation: none;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.1); }
}

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

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

.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 540px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diferenciais-grid .diferencial-card:last-child {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .header-logo img {
    height: 40px;
  }

  .header-cta {
    display: none;
  }

  /* Nav toggle visível */
  .nav-toggle {
    display: flex;
  }

  /* Nav mobile — dropdown */
  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: rgba(251, 225, 21, 0.99);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    font-size: .95rem;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

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

  /* WhatsApp no nav mobile */
  .nav-wa-mobile {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    background-color: #25d366;
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    padding: 12px 16px !important;
    font-weight: 700 !important;
    justify-content: center;
  }

  .header-cta .fab { display: none; }

  /* Hero */
  .hero-section {
    min-height: 100svh;
    background-position: center 30%;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: .95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }

  .hero-stat-card {
    padding: 14px 10px;
  }

  .hero-stat-value {
    font-size: .9rem;
  }

  /* Sections */
  .services-section,
  .portfolio-section,
  .diferenciais-section,
  .contact-section,
  .cta-section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-image {
    height: 220px;
  }

  .service-card-body {
    padding: 22px 20px 24px;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Diferenciais */
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .diferenciais-grid .diferencial-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Form */
  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Float WA */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.site-footer {
  background-color: #0d0e0e;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

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

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.footer-cnpj {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: .88rem;
  }
}
