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

:root {
  --yellow:      #F5C800;
  --yellow-dark: #D4A900;
  --black:       #0A0B0D;
  --dark:        #111418;
  --dark2:       #1A1F26;
  --teal:        #0E2A3B;
  --teal2:       #112F44;
  --white:       #FFFFFF;
  --off-white:   #F5F6F8;
  --gray:        #6B7280;
  --gray-light:  #9CA3AF;
  --text-dark:   #111827;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section--light { background: var(--off-white); padding: 96px 0; }
.section--dark  { background: var(--teal);       padding: 96px 0; color: var(--white); }
.section--teal  { background: var(--teal2);      padding: 96px 0; color: var(--white); }

.txt-yellow { color: var(--yellow); }

.title-dark {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.subtitle-gray {
  color: var(--gray);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; margin-bottom: 10px; }
.section-header p  { color: rgba(255,255,255,0.6); font-size: 15px; }
.section-header--dark h2 { color: var(--text-dark); }
.section-header--dark p  { color: var(--gray); }

/* Pill badges */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.pill--dark {
  background: rgba(17,24,39,0.07);
  color: var(--text-dark);
  border: 1px solid rgba(17,24,39,0.12);
}
.pill--yellow {
  background: rgba(245,200,0,0.15);
  color: #7a5e00;
  border: 1px solid rgba(245,200,0,0.35);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.btn--yellow {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,200,0,0.35);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover { background: #222; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn--outline-light:hover { border-color: var(--yellow); color: var(--yellow); }

.btn--lg   { padding: 14px 28px; font-size: 15px; border-radius: 50px; }
.btn--sm   { padding: 9px 20px; font-size: 13px; border-radius: 50px; }
.btn--full { width: 100%; justify-content: center; }

/* =========================================
   HEADER  (preto)
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,11,13,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav a {
  padding: 7px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a:hover { color: var(--yellow); background: rgba(245,200,0,0.08); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--dark2);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 210px;
  overflow: hidden;
  z-index: 100;
}
.nav__dropdown:hover .nav__drop-menu { display: flex; flex-direction: column; }
.nav__drop-menu a {
  display: block;
  padding: 11px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__drop-menu a:last-child { border-bottom: none; }
.nav__drop-menu a:hover { background: rgba(245,200,0,0.08); color: var(--yellow); }

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header__social { display: flex; gap: 10px; align-items: center; }
.header__social a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  display: flex;
}
.header__social a:hover { color: var(--yellow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,11,13,.95) 0%, rgba(10,11,13,.88) 42%, rgba(10,11,13,.5) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.25);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInLeft 0.6s ease both;
}
.hero__title {
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInLeft 0.7s ease 0.08s both;
}
.hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
  animation: fadeInLeft 0.7s ease 0.16s both;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInLeft 0.7s ease 0.24s both;
}

/* Hero right cards */
.hero__right { animation: fadeInRight 0.7s ease 0.12s both; }
.hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero__card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  transition: all var(--transition);
}
.hero__card:hover {
  background: rgba(245,200,0,0.12);
  border-color: rgba(245,200,0,0.35);
  transform: translateY(-3px);
}
.hero__card-icon {
  color: var(--yellow);
  margin-bottom: 10px;
  display: flex;
}
.hero__card-info strong {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.hero__card-num {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero__card-num sup { font-size: 13px; }
.hero__card-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* =========================================
   SOBRE  (imagem à esquerda, texto à direita)
   ========================================= */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* imagem */
.sobre__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(14,42,59,.7) 0%, rgba(10,11,13,.5) 100%),
    url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?w=800&q=75') center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.sobre__img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 50px;
}
/* texto */
.sobre__text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(245,200,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

/* =========================================
   NÚMEROS  (fundo escuro, layout horizontal)
   ========================================= */
.numeros {
  background: var(--dark);
  border-top: 1px solid rgba(245,200,0,0.1);
  border-bottom: 1px solid rgba(245,200,0,0.1);
  padding: 64px 0;
}
.numeros__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.numeros__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: var(--yellow);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 64px;
  min-width: 180px;
}
.numeros__label p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.5; }
.numeros__label strong { color: var(--white); font-size: 18px; font-weight: 800; display: block; }

.numeros__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.numero {
  text-align: left;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.numero:first-child { padding-left: 0; }
.numero:last-child  { border-right: none; }

.numero__val-wrap {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 6px;
}
.numero__val {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--white);
}
.numero__suf {
  font-size: 20px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 5px;
  margin-left: 2px;
}
.numero__label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* =========================================
   SERVIÇOS  (2×2 grid com ícone+stat em linha)
   ========================================= */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.servico-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.servico-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,200,0,0.28);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.servico-card--featured {
  background: rgba(245,200,0,0.07);
  border-color: rgba(245,200,0,0.22);
}
.servico-card__badge {
  position: absolute;
  top: -11px;
  right: 20px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.servico-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.servico-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(245,200,0,0.12);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.servico-card__stat {
  text-align: right;
}
.stat-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-num sup { font-size: 11px; }
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.servico-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.servico-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  flex: 1;
}
.btn-explorar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  transition: gap var(--transition);
}
.btn-explorar:hover { gap: 10px; }
.servicos__cta { text-align: center; }

/* =========================================
   DEPOIMENTOS
   ========================================= */
.google-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.google-badge__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}
.google-badge__label { font-weight: 700; color: var(--text-dark); }
.google-badge__stars { color: #FBBC05; font-size: 16px; letter-spacing: 1px; }
.google-badge__score { font-weight: 800; color: var(--text-dark); }
.google-badge__text  { font-weight: 600; color: var(--gray); }

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dep-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.dep-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dep-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(245,200,0,0.1);
}
.dep-card__stars { color: #FBBC05; font-size: 15px; letter-spacing: 1px; }
.dep-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.dep-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.dep-card__author strong { display: block; font-size: 14px; }
.dep-card__author span  { display: block; font-size: 12px; color: var(--gray); font-weight: 400; }
.dep-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

/* =========================================
   SIMULADOR (direita) + ATENDIMENTO (esquerda)
   ========================================= */
.simula__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Atendimento */
.atendimento {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  color: var(--text-dark);
}
.atendimento__header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.at-icon-wrap {
  width: 44px; height: 44px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.atendimento__header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}
.atendimento__header p { font-size: 13px; color: var(--gray); }

.at-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.at-table tr { border-bottom: 1px solid #f3f4f6; }
.at-table td { padding: 11px 4px; font-size: 14px; color: var(--text-dark); }
.at-table td:last-child { text-align: right; font-weight: 600; color: var(--gray); }
.at-today td { background: var(--dark); color: var(--white) !important; padding: 11px 10px; }
.at-today td:last-child { color: var(--yellow) !important; }
.at-table tr.at-today:first-child td:first-child { border-radius: 8px 0 0 8px; }
.at-table tr.at-today:first-child td:last-child  { border-radius: 0 8px 8px 0; }
.at-closed { color: #EF4444 !important; }

/* Simulador */
.simulator {
  background: var(--yellow);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  color: var(--dark);
}
.simulator__header { text-align: center; margin-bottom: 22px; }
.sim-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(0,0,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--dark);
}
.simulator__header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.simulator__header p { font-size: 13px; color: rgba(0,0,0,0.55); }

.sim-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(0,0,0,0.08);
}
.sim-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 20px;
  font-weight: 700;
  font-family: inherit;
  background: transparent;
  color: var(--dark);
}
.sim-unit {
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  background: #f3f4f6;
  align-self: stretch;
  display: flex;
  align-items: center;
  border-left: 1px solid #e5e7eb;
}
.sim-result { min-height: 130px; }
.sim-placeholder {
  text-align: center;
  padding: 24px 0;
  color: rgba(0,0,0,0.4);
}
.sim-sun-wrap {
  color: rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  animation: spin 8s linear infinite;
}
.sim-placeholder p { font-size: 13px; }

/* Simulator result */
.sim-kit { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; }
.sim-kit__img {
  height: 110px;
  background: linear-gradient(135deg, #1a3a52 0%, #0d2137 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  position: relative;
}
.sim-kit__badge {
  position: absolute;
  bottom: 10px; left: 12px;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.sim-kit__kwp {
  position: absolute;
  bottom: 10px; right: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}
.sim-kit__desc {
  text-align: center;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--gray);
  border-bottom: 1px solid #f3f4f6;
}
.sim-kit__specs { display: grid; grid-template-columns: 1fr 1fr; }
.sim-spec {
  padding: 12px 14px;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
}
.sim-spec:first-child { border-right: 1px solid #f3f4f6; }
.sim-spec label {
  display: block;
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.sim-spec strong { font-size: 18px; font-weight: 800; color: var(--dark); }
.sim-kit__price {
  padding: 14px;
  text-align: center;
  background: #f9fafb;
}
.sim-kit__price label {
  display: block;
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.sim-kit__price .price-main { font-size: 24px; font-weight: 900; color: var(--dark); }
.sim-kit__price .price-parcel { font-size: 12px; color: var(--gray); }
.sim-kit__cta {
  display: block;
  margin: 10px 14px 14px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 11px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  transition: all var(--transition);
}
.sim-kit__cta:hover { background: #222; }

/* =========================================
   TECNOLOGIAS  (2 col: heading + lista)
   ========================================= */
.tec__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.tec__heading h2 { margin-bottom: 14px; }
.tec__heading > p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.tec__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tec-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tec-item__icon {
  width: 48px; height: 48px;
  background: var(--dark);
  color: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tec-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.tec-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* =========================================
   BLOG  (1 grande + 2 empilhados)
   ========================================= */
.blog__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.blog__stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__img {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.blog-card--featured .blog-card__img { height: 220px; }
.blog-card--sm .blog-card__img       { height: 130px; }

.blog-card__img--1 { background: linear-gradient(160deg, rgba(13,33,55,.85), rgba(0,0,0,.65)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=600&q=75') center/cover no-repeat; }
.blog-card__img--2 { background: linear-gradient(160deg, rgba(13,33,20,.85), rgba(0,0,0,.65)), url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=600&q=75') center/cover no-repeat; }
.blog-card__img--3 { background: linear-gradient(160deg, rgba(33,13,13,.85), rgba(0,0,0,.65)), url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=600&q=75') center/cover no-repeat; }

.blog-card__date {
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.blog-card__body { padding: 18px; }
.blog-card--featured .blog-card__body { padding: 22px; }
.blog-card__body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 10px;
}
.blog-card--featured .blog-card__body h4 { font-size: 16px; }
.blog-card__body p  {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-dark);
  transition: gap var(--transition);
}
.blog-link:hover { gap: 8px; }
.blog__cta { text-align: center; }

/* =========================================
   CONTATO  (fundo escuro)
   ========================================= */
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contato__info h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.contato__info > p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.contato__itens { display: flex; flex-direction: column; gap: 22px; }
.contato__item  { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(245,200,0,0.12);
  border: 1px solid rgba(245,200,0,0.2);
  border-radius: var(--radius);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato__item strong {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contato__item a, .contato__item span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.contato__item a:hover { color: var(--yellow); }

/* Form */
.contato__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 11px 13px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,200,0,0.1);
  background: var(--white);
}
.form-note {
  font-size: 12px;
  color: var(--gray-light);
  text-align: center;
}

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--black); color: rgba(255,255,255,0.8); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer__brand img {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__pay-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.footer__pay { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.pay-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--yellow); color: var(--dark); }

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li, .footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--yellow); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
.footer__contact-item svg { flex-shrink: 0; opacity: 0.55; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 24px; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--yellow); }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .servicos__grid  { grid-template-columns: repeat(2, 1fr); }
  .tec__inner      { grid-template-columns: 1fr; gap: 48px; }
  .tec__list       { grid-template-columns: repeat(2, 1fr); }
  .footer__inner   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .numeros__inner  { grid-template-columns: 1fr; gap: 40px; }
  .numeros__label  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-right: 0; padding-bottom: 32px; flex-direction: row; align-items: center; }
  .numeros__grid   { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .numero          { padding: 0; border-right: none; }
}

@media (max-width: 768px) {
  .section--light, .section--dark, .section--teal { padding: 64px 0; }

  .nav, .header__right { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,11,13,0.98);
    backdrop-filter: blur(16px);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .nav.open a {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
  }
  .hamburger { display: flex; }

  .hero__inner      { grid-template-columns: 1fr; }
  .hero__right      { display: none; }
  .sobre__inner     { grid-template-columns: 1fr; gap: 40px; }
  .contato__inner   { grid-template-columns: 1fr; gap: 48px; }
  .contato__form    { padding: 24px 18px; }
  .simula__inner    { grid-template-columns: 1fr; }
  .servicos__grid   { grid-template-columns: 1fr; }
  .depoimentos__grid{ grid-template-columns: 1fr; }
  .blog__grid       { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .form-row         { grid-template-columns: 1fr; }
  .numeros__grid    { grid-template-columns: 1fr 1fr; }
  .tec__list        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions .btn { width: 100%; justify-content: center; }
  .numeros__grid      { grid-template-columns: 1fr 1fr; }
  .blog__stack        { display: none; }
}
