/* ============================================
   ÁGAPE SERVIÇOS — DESIGN SYSTEM
   Desenvolvido por Converzon
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { line-height: 1.75; color: #4B5563; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============ TOKENS ============ */
:root {
  --g900: #0D2118;
  --g800: #1B3828;
  --g700: #245038;
  --g600: #2D6848;
  --g500: #3A8860;
  --g400: #52A87A;
  --g100: #E6F4EC;
  --yellow: #E8A020;
  --yellow-dk: #C8861A;
  --yellow-lt: #FEF3DC;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --dark: #111827;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 24px;
  --trans: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
}

/* ============ UTILITIES ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 10px;
}
.section-title { color: var(--g800); margin-bottom: 16px; }
.section-title--white { color: white; }
.section-sub { font-size: 1.05rem; max-width: 600px; }
.section-sub--white { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.divider {
  width: 48px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 0 24px 0;
}
.divider--center { margin: 0 auto 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,32,0.35);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: white;
  color: var(--g800);
  border-color: white;
}
.btn-green {
  background: var(--g600);
  color: white;
  border-color: var(--g600);
}
.btn-green:hover {
  background: var(--g700);
  border-color: var(--g700);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 0.95rem; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27,56,40,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--trans);
}
.header.scrolled {
  background: var(--g800);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img {
  height: 78px;
  width: auto;
  border-radius: 10px;
  padding: 6px 10px;
  background: white;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 6px;
}
nav a:hover { color: white; background: rgba(255,255,255,0.1); }
nav a.active { color: var(--yellow); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; fill: var(--yellow); }

/* Mobile hamburger */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  border-radius: 6px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--trans);
}

@media (max-width: 900px) {
  .header-phone { display: none; }
  .header-right .btn { display: none; }
}
@media (max-width: 768px) {
  .logo img { height: 56px; padding: 4px 8px; }
}
@media (max-width: 768px) {
  .menu-btn { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--g800);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; border-radius: 8px; }
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 140px 0 64px;
  background: var(--g800);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 14px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb .sep { opacity: 0.4; }

/* ============ HOME HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/frota-agape.jpeg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,33,24,0.93) 0%,
    rgba(27,56,40,0.82) 55%,
    rgba(27,56,40,0.50) 100%
  );
}
.hero .container { position: relative; z-index: 1; padding-top: 80px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge span {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { color: white; max-width: 700px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-item {}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============ YELLOW BAR ============ */
.yellow-bar {
  background: var(--yellow);
  padding: 22px 0;
}
.yellow-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.yellow-bar-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--g800);
}
.yellow-bar-text span { font-weight: 400; font-size: 0.9rem; }

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: white;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--g100);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px; }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--g100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width: 22px; height: 22px; fill: var(--g600); }
.service-card-body h3 { color: var(--g800); margin-bottom: 8px; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 16px; }
.service-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--g600);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-link::after {
  content: '→';
  transition: var(--trans);
}
.service-card:hover .service-link::after { transform: translateX(4px); }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============ ABOUT / DIFERENCIAIS ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--yellow);
  color: var(--g800);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.diferenciais { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.diferencial {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
}
.diferencial:hover { background: var(--g100); border-color: var(--g400); }
.dif-icon {
  width: 44px;
  height: 44px;
  background: var(--g100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dif-icon svg { width: 22px; height: 22px; fill: var(--g600); }
.dif-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--g800);
  margin-bottom: 4px;
}
.dif-text p { font-size: 0.85rem; margin: 0; }

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

/* ============ CERTIFICATIONS ============ */
.certs-bg {
  background: var(--g800);
  padding: 64px 0;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 40px;
}
.cert-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  transition: var(--trans);
}
.cert-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--yellow);
}
.cert-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,160,32,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(232,160,32,0.4);
}
.cert-icon svg { width: 26px; height: 26px; fill: var(--yellow); }
.cert-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 8px;
}
.cert-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

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

/* ============ CLIENTS ============ */
.clients-bg { background: var(--off-white); }
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.client-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-400);
  letter-spacing: -0.5px;
  transition: var(--trans);
  padding: 12px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: white;
}
.client-logo:hover { color: var(--g600); border-color: var(--g400); }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--g800) 0%, var(--g700) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 540px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ SERVICES PAGE — DETAIL ============ */
.services-detail { }
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img { width: 100%; height: 380px; object-fit: cover; }
.service-detail-content {}
.service-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--g100);
  line-height: 1;
  margin-bottom: 8px;
}
.service-detail-content h2 { color: var(--g800); margin-bottom: 12px; }
.service-detail-content p { margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.service-feature::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-detail-item { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-item.reverse { direction: ltr; }
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.contact-form-card h3 { color: var(--g800); margin-bottom: 8px; }
.contact-form-card p { font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--gray-100);
  transition: var(--trans);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--g500);
  background: white;
  box-shadow: 0 0 0 3px rgba(58,136,96,0.12);
}
textarea { resize: vertical; min-height: 130px; }
select { cursor: pointer; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--g800);
  border-radius: var(--r);
  padding: 28px;
  color: white;
}
.info-card h3 { color: white; font-size: 1rem; margin-bottom: 16px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,160,32,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; fill: var(--yellow); }
.info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.hours-grid { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .open { color: var(--g400); font-weight: 600; }
.hours-row .closed { color: rgba(255,255,255,0.35); }
.map-card {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.map-card iframe { display: block; width: 100%; height: 260px; border: 0; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .contact-form-card { padding: 28px 20px; } }

/* ============ FOOTER ============ */
.footer {
  background: var(--g900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 14px; }
.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
}
.footer-brand-name small {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--yellow); }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact-list svg { width: 15px; height: 15px; fill: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-hours-sm .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
}
.footer-hours-sm .open-sm { color: var(--g400); font-weight: 600; }
.footer-hours-sm .closed-sm { color: rgba(255,255,255,0.3); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ WHATSAPP BUTTON ============ */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--trans);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }
.wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ 5-CARD GRID ============ */
.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.services-grid-5 .service-card { grid-column: span 2; }
.services-grid-5 .service-card:nth-child(4) { grid-column: 2 / span 2; }
.services-grid-5 .service-card:nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 900px) {
  .services-grid-5 { grid-template-columns: repeat(2,1fr); }
  .services-grid-5 .service-card,
  .services-grid-5 .service-card:nth-child(4),
  .services-grid-5 .service-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 560px) {
  .services-grid-5 { grid-template-columns: 1fr; }
  .services-grid-5 .service-card,
  .services-grid-5 .service-card:nth-child(4),
  .services-grid-5 .service-card:nth-child(5) { grid-column: 1; }
}

/* ============ LOGO SLIDER ============ */
.logo-slider-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.logo-slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  color: var(--g800);
}
.logo-slider-btn:hover { background: var(--g800); color: white; border-color: var(--g800); }
.logo-slider-btn svg { display: block; pointer-events: none; }
.logo-slider-viewport { flex: 1; overflow: hidden; }
.logo-slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.logo-slider-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.client-logo-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  transition: var(--trans);
  overflow: hidden;
}
.client-logo-item:hover {
  border-color: var(--g400);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.client-logo-item img {
  max-height: 54px;
  max-width: 130px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  display: block;
  transition: all .3s;
}
.client-logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.4;
  transition: color .3s;
}
.client-logo-item:hover .logo-text { color: var(--g700); }
.logo-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.logo-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.logo-dot.active { background: var(--g600); width: 24px; }
@media (max-width: 900px) {
  .logo-slider-page { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .logo-slider-page { grid-template-columns: repeat(2, 1fr); }
  .logo-slider-btn { width: 36px; height: 36px; }
}

/* ============ FAQ ============ */
.faq-section { background: var(--off-white); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border-radius: var(--r);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: var(--g400);
  box-shadow: 0 4px 20px rgba(27,56,40,.09);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--g800);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  line-height: 1.4;
  transition: background .15s;
}
.faq-question:hover { background: #f4faf6; }
.faq-item.open .faq-question { background: #edf7f1; color: var(--g700); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  stroke: var(--g600);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform .3s ease, stroke .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); stroke: var(--yellow); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 20px 28px 26px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: #4b5563;
  border-top: 1px solid #f3f4f6;
}
.faq-answer-inner a { color: var(--g600); text-decoration: underline; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ============ MISC ============ */
.bg-off { background: var(--off-white); }
.bg-green { background: var(--g800); }

/* Success message */
.form-success {
  background: var(--g100);
  border: 1px solid var(--g400);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  color: var(--g700);
  font-size: 0.9rem;
  display: none;
  margin-top: 16px;
  text-align: center;
}
