/* =========================================================
   Hard Work Solutions — main.css  (light clean tech)
   ========================================================= */

/* --- Reset & Custom Properties --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #ffffff;
  --bg-subtle:     #f7f8f9;
  --bg-accent:     #edf3f4;
  --border:        #e5e7eb;
  --border-strong: #c9d4d6;

  --text:          #0f1a1c;
  --text-muted:    #6b7c82;
  --text-light:    #9badb2;

  --accent:        #4A6F77;
  --accent-dark:   #3a5760;
  --accent-light:  #8ec5ce;

  --font: 'Poppins', sans-serif;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(15,26,28,.06);
  --shadow:    0 4px 20px rgba(15,26,28,.08);
  --shadow-lg: 0 12px 40px rgba(15,26,28,.12);

  --transition: .2s ease;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* --- Typography --- */
h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.75px;
  color: var(--text);
}
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; color: var(--text); }
h4 { font-size: .875rem; font-weight: 700; color: var(--text); }
p  { color: var(--text-muted); line-height: 1.7; }

/* --- Layout --- */
.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

.section { padding: 96px 0; }
.section--subtle { background: var(--bg-subtle); }
.section--accent { background: var(--bg-accent); }
.section--dark   { background: var(--text); }
.section--border-top { border-top: 1px solid var(--border); }

.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center p { max-width: 520px; margin-inline: auto; }
.section__header h2 { margin-bottom: 12px; }
.section__header p  { font-size: 1.0625rem; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .1px;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--secondary {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid transparent;
  padding: 11px 8px;
}
.btn--ghost:hover { color: var(--text); }

.btn--sm { padding: 7px 14px; font-size: .8125rem; }

/* dark section variants */
.section--dark .btn--primary { background: var(--bg); color: var(--text); border-color: var(--bg); }
.section--dark .btn--primary:hover { background: var(--bg-subtle); }
.section--dark .btn--secondary { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
.section--dark .btn--secondary:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 4px;
}

.nav__logo { display: flex; align-items: center; margin-right: auto; }
.nav__logo img { height: 36px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--text); background: var(--bg-subtle); }
.nav__link svg { width: 11px; height: 11px; transition: transform var(--transition); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  overflow: hidden;
  padding: 4px;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__dropdown a:hover { background: var(--bg-subtle); color: var(--text); }
.nav__dropdown a svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.nav__dropdown-badge {
  margin-left: auto;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-accent);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 99px;
}

.nav__actions { display: flex; align-items: center; gap: 8px; margin-left: 16px; }

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - 68px);
  background: var(--bg);
  padding: 20px 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 2px;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--text); background: var(--bg-subtle); }
.nav__mobile .mobile-group-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 14px 4px;
}
.nav__mobile .mobile-sub a { padding-left: 24px; font-size: .875rem; }
.nav__mobile .mobile-badge {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-accent);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 99px;
}
.nav__mobile .mobile-cta {
  margin-top: 16px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius-sm);
  text-align: center;
  justify-content: center;
  font-weight: 600;
  padding: 14px;
}
.nav__mobile .mobile-cta:hover { background: var(--accent-dark) !important; }

/* =========================================================
   HERO (static, text-forward — sem carousel)
   ========================================================= */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Subtle dot-grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none;
}

/* Teal glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(74,111,119,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {}

.hero-text .label { margin-bottom: 20px; }

.hero-text h1 { margin-bottom: 20px; }

.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-text p {
  font-size: 1.0625rem;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-trust-text { font-size: .8125rem; color: var(--text-light); font-weight: 500; }
.hero-trust-dots {
  display: flex;
  gap: 6px;
}
.hero-trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .25;
}
.hero-trust-dot.active { opacity: 1; }

/* Hero visual (right side) */
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hero-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-card__dot:nth-child(1) { background: #ff5f56; }
.hero-card__dot:nth-child(2) { background: #febc2e; }
.hero-card__dot:nth-child(3) { background: #28c840; }
.hero-card__title { font-size: .8125rem; font-weight: 600; color: var(--text-muted); margin-left: 4px; }

.hero-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.hero-service:last-child { border-bottom: none; }
.hero-service__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-service__icon svg { width: 18px; height: 18px; color: var(--accent); }
.hero-service__name { font-size: .875rem; font-weight: 600; color: var(--text); }
.hero-service__desc { font-size: .75rem; color: var(--text-muted); }
.hero-service__badge {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 3px 8px;
  white-space: nowrap;
}
.hero-service__badge--active {
  background: #e8f7ee;
  color: #1a7f45;
}
.hero-service__badge--soon {
  background: var(--bg-accent);
  color: var(--accent);
}

/* Floating accent card */
.hero-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
}
.hero-float__label { font-size: .6875rem; font-weight: 600; opacity: .7; letter-spacing: 1px; text-transform: uppercase; }
.hero-float__value { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; margin-top: 2px; }

/* =========================================================
   HERO COMPACTO (subpáginas)
   ========================================================= */
.hero-compact {
  padding: 128px 0 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-compact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .4;
  pointer-events: none;
}
.hero-compact::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(74,111,119,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-compact .container { position: relative; z-index: 1; }
.hero-compact h1 { margin-bottom: 14px; max-width: 680px; }
.hero-compact p { font-size: 1.0625rem; margin-bottom: 28px; max-width: 540px; }

/* =========================================================
   SERVIÇOS / PRODUTOS — CARDS
   ========================================================= */
/* Carousel wrapper */
.services-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  flex: 1;
}
.services-carousel::-webkit-scrollbar { display: none; }
.services-carousel .service-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.carousel-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 1;
}
.carousel-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-accent); }
.carousel-btn:disabled { opacity: .3; cursor: default; }

/* Legacy grid (not used in home anymore, kept for other pages) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* "Em breve" state */
.service-card--soon {
  background: var(--bg-subtle);
}
.service-card--soon:hover {
  border-color: var(--border-strong);
  box-shadow: none;
  transform: none;
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 4px 10px;
}
.service-card__badge--active { background: #e8f7ee; color: #1a7f45; }
.service-card__badge--soon   { background: var(--bg-accent); color: var(--accent); }

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--bg-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card--soon .service-card__icon { opacity: .5; }

.service-card h3 { margin-bottom: 8px; }
.service-card p  { font-size: .9375rem; flex: 1; margin-bottom: 24px; }
.service-card--soon p { opacity: .6; }

.service-card .btn { align-self: flex-start; }
.service-card--soon .btn { pointer-events: none; opacity: .45; }

/* =========================================================
   SOBRE / ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.about-text h2 { margin-bottom: 16px; }
.about-text > p { font-size: 1.0625rem; margin-bottom: 16px; }
.about-text .btn { margin-top: 8px; }

/* MVV */
.mvv-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mvv-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.mvv-item__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.mvv-item h4 { font-size: .8125rem; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.mvv-item p  { font-size: .875rem; }

/* =========================================================
   COMO TRABALHAMOS
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--bg);
  padding: 32px 24px;
  position: relative;
}
.process-step__num {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p  { font-size: .875rem; }

/* =========================================================
   FEATURES (subpáginas)
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.feature-card__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--bg-accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.feature-card__icon svg { width: 20px; height: 20px; color: var(--accent); }
.feature-card h3 { font-size: 1rem; margin-bottom: 5px; }
.feature-card p  { font-size: .875rem; }

/* =========================================================
   ROLES / CHIPS
   ========================================================= */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.role-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.role-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-accent); }
.role-chip svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* =========================================================
   STEPS
   ========================================================= */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
  max-width: 680px;
  margin-inline: auto;
}
.step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.step-item:last-child { border-bottom: none; }
.step-item__num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--border-strong);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  margin-top: 2px;
}
.step-item__num::before { content: counter(step, decimal-leading-zero); }
.step-item h3 { font-size: 1rem; margin-bottom: 5px; }
.step-item p  { font-size: .875rem; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: var(--text);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(74,111,119,.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; position: relative; }
.cta-section p  { color: rgba(255,255,255,.55); margin-top: 6px; position: relative; }
.cta-section .actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; position: relative; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { font-size: 1.0625rem; margin-bottom: 36px; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.contact-info__item strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}
.contact-info__item span, .contact-info__item a {
  font-size: .9rem;
  color: var(--text-muted);
}
.contact-info__item a:hover { color: var(--accent); }

.contact-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: .6875rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 2px; }
.contact-item span,
.contact-item a { font-size: .9375rem; color: var(--text); }
.contact-item a:hover { color: var(--accent); }

.contact-social { display: flex; gap: 8px; margin-top: 24px; }
.contact-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.contact-social a svg { width: 16px; height: 16px; color: var(--text-muted); }
.contact-social a:hover { border-color: var(--accent); background: var(--bg-accent); }
.contact-social a:hover svg { color: var(--accent); }

/* Form */
.contact-form {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8125rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input.error,
.form-group textarea.error { border-color: #d32f2f; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.map-wrap { margin-top: 56px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 320px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--text);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 32px; }
.footer-about p { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a svg { width: 15px; height: 15px; color: rgba(255,255,255,.4); }
.footer-social a:hover { border-color: var(--accent); background: var(--accent); }
.footer-social a:hover svg { color: #fff; }

.footer-col h4 {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: rgba(255,255,255,.9); }
.footer-col ul .soon-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(74,111,119,.3);
  color: var(--accent-light);
  padding: 2px 5px;
  border-radius: 4px;
}
.footer-col address { font-style: normal; }
.footer-col address p { font-size: .875rem; color: rgba(255,255,255,.4); margin-bottom: 5px; }
.footer-col address a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-col address a:hover { color: rgba(255,255,255,.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.25); }
.footer-bottom a { font-size: .8125rem; color: rgba(255,255,255,.3); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; color: #fff; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   UTILITY
   ========================================================= */
.text-accent { color: var(--accent); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.badge--soon    { background: var(--bg-accent); color: var(--accent); }
.badge--active  { background: #e8f7ee; color: #1a7f45; }
.badge--neutral { background: var(--bg-subtle); border: 1px solid var(--border); color: var(--text-muted); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .process-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .roles-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-grid       { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual     { display: none; }
  .hero-text p     { max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { width: min(1160px, 100% - 2rem); }

  .nav__menu,
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }

  .services-grid  { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .services-carousel .service-card { flex: 0 0 85vw; }
  .features-grid  { grid-template-columns: 1fr; }
  .roles-grid     { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 36px; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form   { padding: 24px 18px; }

  .cta-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .cta-section .actions { justify-content: center; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }

  h1 { letter-spacing: -1px; }
}

@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
