/* ==========================================================================
   D&B Serviços — Design System
   ========================================================================== */

:root {
  --green: #1E8F4E;
  --green-light: #2FB565;
  --green-dark: #0C3D24;
  --green-darker: #082A19;
  --black: #12161A;
  --charcoal: #1B2226;
  --white: #FFFFFF;
  --gray-light: #F3F5F4;
  --gray-100: #E7EAE9;
  --gray-300: #C7CDCB;
  --gray-500: #6E7674;
  --gray-700: #3D4443;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(8, 20, 14, 0.08);
  --shadow-md: 0 10px 30px rgba(8, 20, 14, 0.14);
  --shadow-lg: 0 20px 50px rgba(8, 20, 14, 0.22);
  --transition: 0.25s ease;
  --container: 1220px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: var(--gray-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 14px; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(30, 143, 78, 0.35);
}
.btn-primary:hover { background: var(--green-light); box-shadow: 0 14px 30px rgba(30, 143, 78, 0.45); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #21bd5b; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}
.btn-outline-dark:hover { border-color: var(--black); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Header ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18, 22, 26, 0.0);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(18, 22, 26, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}
.footer-logo { height: 52px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  opacity: 0.88;
  transition: opacity var(--transition);
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--green-light);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 22px; font-size: 0.9rem; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--green-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1200;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.35);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; }
  .header-cta .btn-outline { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { gap: 8px; }
}

@media (max-width: 480px) {
  .site-header { padding: 14px 0; }
  .site-header.scrolled { padding: 10px 0; }
  .brand-logo { height: 42px; }
  .header-cta .btn { padding: 10px 14px; font-size: 0.78rem; }
  .header-cta { gap: 6px; }
  .nav-toggle { padding: 6px 2px; }
}

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* Hero -------------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,13,10,0.52) 0%, rgba(8,13,10,0.32) 45%, rgba(8,13,10,0.58) 100%),
    linear-gradient(90deg, rgba(8,13,10,0.38) 0%, rgba(8,13,10,0.2) 50%, rgba(8,13,10,0.38) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(47, 181, 101, 0.16);
  border: 1px solid rgba(47, 181, 101, 0.45);
  color: var(--green-light);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--green-light); }

.hero p.lead {
  color: var(--gray-100);
  font-size: 1.22rem;
  max-width: 600px;
  margin-bottom: 38px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 42px;
}
.hero-ctas .btn-xl {
  padding: 20px 42px;
  font-size: 1.1rem;
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}
.hero-ctas .btn-primary.btn-xl:hover { transform: translateY(-3px) scale(1.02); }

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  justify-content: center;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-checks li svg {
  width: 20px; height: 20px;
  color: var(--green-light);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero { min-height: 88vh; padding-top: 100px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-xl { width: 100%; }
  .hero-checks { gap: 10px 20px; }
  .hero-checks li { font-size: 0.85rem; }
}

/* Trust bar --------------------------------------------------------------*/
.trust-bar {
  background: var(--gray-light);
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-dark);
}
.trust-item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* Service Cards ------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(30,143,78,0.3);
}
.service-card .icon svg { width: 28px; height: 28px; color: #fff; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; }
.service-card .link {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .link svg { transform: translateX(4px); }

/* Why choose us ----------------------------------------------------------*/
.why-section { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.why-section .section-head h2 { color: #fff; }
.why-section .section-head p { color: var(--gray-300); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(47,181,101,0.08); border-color: rgba(47,181,101,0.35); transform: translateY(-4px); }
.why-card .num {
  font-family: var(--font-head);
  color: var(--green-light);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.why-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: var(--gray-300); font-size: 0.92rem; }

/* Areas of action ----------------------------------------------------- */
.areas-section { background: var(--gray-light); }
.areas-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 860px) { .areas-flex { grid-template-columns: 1fr; } }
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-pill {
  background: #fff;
  border: 1px solid var(--gray-100);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
  transition: all var(--transition);
}
.area-pill:hover { background: var(--green); color: #fff; border-color: var(--green); }
.area-pill.main { background: var(--green); color: #fff; border-color: var(--green); }

.map-visual {
  background: var(--black);
  border-radius: var(--radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3.2;
  box-shadow: var(--shadow-md);
}
.map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,13,10,0.85) 100%);
}
.map-visual .pin-label {
  position: absolute;
  z-index: 1;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(18,22,26,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px;
}
.map-visual .pin-label strong { color: var(--green-light); display:block; margin-bottom: 4px; }
.map-visual .pin-label span { color: var(--gray-300); font-size: 0.85rem; }

/* Gallery / before-after ------------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,14,12,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: #fff; font-weight: 700; font-size: 0.95rem; }
.gallery-item .cat-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.placeholder-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: repeating-linear-gradient(135deg, #E7EAE9, #E7EAE9 12px, #EFF2F0 12px, #EFF2F0 24px);
  color: var(--gray-500);
}
.placeholder-img svg { width: 40px; height: 40px; opacity: 0.55; }
.placeholder-img span { font-size: 0.78rem; font-weight: 600; text-align: center; padding: 0 14px; }

/* Before / After slider --------------------------------------------------*/
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba-slider img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
.ba-slider .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-before { z-index: 1; }
.ba-slider .ba-after-wrap {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid #fff;
}
.ba-slider .ba-after-wrap img { width: var(--ba-w, 200%); max-width: none; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  pointer-events: none;
}
.ba-handle svg { width: 20px; height: 20px; color: var(--green-dark); }
.ba-label {
  position: absolute; top: 16px; z-index: 3;
  background: rgba(18,22,26,0.75);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ba-label.left { left: 16px; }
.ba-label.right { right: 16px; }

/* Filter tabs --------------------------------------------------------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--gray-light);
  border: 1px solid var(--gray-100);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--green); color: var(--green-dark); }
.filter-tab.active { background: var(--green); color: #fff; border-color: var(--green); }

/* CTA band ----------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; max-width: 480px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 480px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band .btn-dark { background: var(--black); }

.cta-wrap { padding: 0 0 88px; }
@media (max-width: 768px) { .cta-band { padding: 40px 28px; } }

/* Full width final CTA */
.final-cta {
  background: var(--black);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(47,181,101,0.22), transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; }
.final-cta p { color: var(--gray-300); max-width: 600px; margin: 16px auto 34px; font-size: 1.1rem; }
.final-cta .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Testimonials --------------------------------------------------------*/
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: #F5B301; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { font-style: italic; color: var(--gray-700); margin-bottom: 18px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
}
.testimonial-card .author strong { display: block; font-size: 0.92rem; }
.testimonial-card .author span { font-size: 0.8rem; color: var(--gray-500); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 980px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Steps / process ------------------------------------------------------ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { position: relative; padding-top: 20px; }
.step-card .step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step-card p { font-size: 0.92rem; }

/* Page header (inner pages) ------------------------------------------- */
.page-header {
  background: linear-gradient(160deg, var(--green-darker), var(--black));
  color: #fff;
  padding: 170px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(47,181,101,0.25), transparent 45%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  color: var(--gray-300);
  font-size: 0.88rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.page-header .breadcrumb a { color: var(--green-light); }
.page-header h1 { color: #fff; margin-bottom: 16px; }
.page-header p { color: var(--gray-100); font-size: 1.1rem; max-width: 640px; }

/* Category blocks (services page) --------------------------------------*/
.category-block { border-bottom: 1px solid var(--gray-100); padding: 70px 0; }
.category-block:last-of-type { border-bottom: none; }
.category-block .cat-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 900px) { .category-block .cat-grid { grid-template-columns: 1fr; } }
.category-block .cat-intro .icon-badge {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(30,143,78,0.28);
}
.category-block .cat-intro .icon-badge svg { width: 30px; height: 30px; color: #fff; }
.category-block .cat-intro p { margin: 16px 0 24px; }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
@media (max-width: 560px) { .service-list { grid-template-columns: 1fr; } }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 12px 14px;
  background: var(--gray-light);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.service-list li:hover { border-color: var(--green); background: #fff; box-shadow: var(--shadow-sm); }
.service-list li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Contact page --------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon svg { width: 24px; height: 24px; color: #fff; }
.contact-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-card a, .contact-card span { color: var(--gray-700); font-weight: 600; }
.contact-card a:hover { color: var(--green-dark); }

.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-btn {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.social-btn:hover { background: var(--green); transform: translateY(-3px); }
.social-btn svg { width: 22px; height: 22px; color: #fff; }

.form-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.field label .req { color: var(--green); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--gray-100);
  background: var(--gray-light);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--transition), background var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }

.file-drop {
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  background: var(--gray-light);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.file-drop:hover { border-color: var(--green); background: #fff; }
.file-drop svg { width: 30px; height: 30px; color: var(--green); margin-bottom: 10px; }
.file-drop strong { display: block; color: var(--charcoal); font-size: 0.92rem; margin-bottom: 4px; }
.file-drop span { font-size: 0.8rem; color: var(--gray-500); }
.file-drop input { display: none; }
.file-list { margin-top: 12px; font-size: 0.82rem; color: var(--gray-700); }

.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  background: rgba(30,143,78,0.08);
  border: 1px solid var(--green);
  color: var(--green-dark);
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}
.form-success.show { display: block; }
.form-success.form-error {
  background: rgba(198,40,40,0.08);
  border-color: #c62828;
  color: #a01c1c;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  margin-top: 22px;
  aspect-ratio: 16/9;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* About page ------------------------------------------------------------ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 20px; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-item {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.value-item svg { width: 30px; height: 30px; color: var(--green); margin-bottom: 14px; }
.value-item h3 { font-size: 1rem; margin-bottom: 8px; }
.value-item p { font-size: 0.9rem; }

/* Footer ----------------------------------------------------------------*/
.site-footer { background: var(--black); color: var(--gray-300); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid ul a { color: var(--gray-300); font-size: 0.92rem; transition: color var(--transition); }
.footer-grid ul a:hover { color: var(--green-light); }
.footer-about p { color: var(--gray-300); font-size: 0.92rem; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-300); font-size: 0.92rem; }
.footer-contact li svg { width: 18px; height: 18px; color: var(--green-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--green-light); }

/* WhatsApp float --------------------------------------------------------*/
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.5);
  z-index: 1100;
  animation: wa-pulse 2.6s infinite;
}
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float:hover { transform: scale(1.07); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 10px 26px rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,0.5); }
}

/* Scroll reveal ---------------------------------------------------------*/
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Two column generic ------------------------------------------------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.badge-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.badge-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--charcoal); }
.badge-list li svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.bg-gray { background: var(--gray-light); }
