/* =============================================
   ODONTO KERR — Landing Page
   Design: Premium, limpo, minimalista
   Cores: Azul Marinho + Esmeralda + Branco
   Fonte: Inter
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0B1D3A;
  --navy-light: #132B50;
  --cyan: #00B4D8;
  --cyan-hover: #0096B7;
  --cyan-soft: #E0F7FA;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(11,29,58,.06);
  --shadow-md: 0 4px 16px rgba(11,29,58,.08);
  --shadow-lg: 0 8px 32px rgba(11,29,58,.10);
  --transition: .25s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}


/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: 96px 0;
}

.section--white {
  background: var(--white);
}

.section--light {
  background: var(--gray-50);
}

.section--navy {
  background: var(--navy);
}

.section--navy-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.section__tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-align: center;
}

.section__tag--light {
  color: var(--cyan);
}

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
}

.section__title--left {
  text-align: left;
}

.section__title--light {
  color: var(--white);
}

.section__subtitle {
  text-align: center;
  color: var(--gray-500);
  max-width: 560px;
  margin: -32px auto 48px;
  font-size: 17px;
}

.highlight {
  color: var(--cyan);
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--cyan);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--cyan-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,180,216,.3);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn i {
  font-size: 18px;
}


/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header--scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width var(--transition);
}

.header__link:hover {
  color: var(--navy);
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  padding: 10px 24px;
  font-size: 14px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Video de fundo (Bunny CDN) cobrindo o hero inteiro, em loop */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;  /* o fundo nao intercepta cliques/scroll */
}

/* Overlay navy pra legibilidade do texto, mais forte do lado do conteudo */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 29, 58, 0.9) 0%, rgba(11, 29, 58, 0.66) 48%, rgba(11, 29, 58, 0.34) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  display: flex;
  justify-content: center;
}

.hero__img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Conteudo do hero por cima do video de fundo */
.hero__inner {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  color: var(--white);
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}


/* =============================================
   NÚMEROS (seção de impacto)
   ============================================= */
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.numero-card {
  padding: 32px 16px;
  background: var(--cyan-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,180,216,.15);
}

.numero-card__value {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.1;
  margin-bottom: 8px;
}

.numero-card__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .numeros-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .numero-card {
    padding: 20px 12px;
  }
}


/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--cyan-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--cyan);
  color: var(--white);
}

.service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}


/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diferenciais__header {
  text-align: center;
  margin-bottom: 48px;
}

.diferenciais__header .section__title {
  margin-bottom: 32px;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.diferencial-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.diferencial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.diferencial-card--img {
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.diferencial-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.diferencial-card__body {
  padding: 20px 24px 24px;
}

.diferencial-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.diferencial-card__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}


/* =============================================
   CARGA IMEDIATA
   ============================================= */
.carga__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.carga__content .section__tag,
.carga__content .section__title {
  text-align: left;
  margin-bottom: 16px;
}

.carga__content .section__title {
  margin-bottom: 24px;
}

.carga__text {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.carga__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.carga__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
}

.carga__benefit i {
  color: var(--cyan);
  font-size: 20px;
  flex-shrink: 0;
}

.carga__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
}


/* =============================================
   SOBRE / QUEM SOMOS
   ============================================= */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sobre__content .section__tag {
  text-align: left;
}

.sobre__content .section__title {
  text-align: left;
  margin-bottom: 24px;
  font-size: clamp(24px, 3.5vw, 34px);
}

.sobre__text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre__text:last-child {
  margin-bottom: 0;
}


/* =============================================
   EQUIPE
   ============================================= */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.equipe-card {
  text-align: center;
}

.equipe-card__photo {
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
}

.equipe-card__photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  transition: transform .4s ease;
}

.equipe-card:hover .equipe-card__photo img {
  transform: scale(1.04);
}

.equipe-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.equipe-card__role {
  font-size: 14px;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 4px;
}

.equipe-card__cro {
  font-size: 13px;
  color: var(--gray-400);
}


/* =============================================
   CARROSSEL DE SORRISOS
   ============================================= */
.carousel {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel__track {
  display: flex;
  transition: transform .4s ease;
  cursor: grab;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__slide {
  min-width: 100%;
  padding: 0 16px;
}

.carousel__img {
  display: block;
  max-height: 520px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  user-select: none;
}

.carousel__caption {
  text-align: center;
  color: var(--gray-400);
  font-size: 17px;
  font-style: italic;
  margin-top: 24px;
  padding: 0 32px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel__dot.active {
  background: var(--cyan);
  width: 28px;
  border-radius: 5px;
}

.carousel__arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.carousel__arrow:hover {
  background: rgba(255,255,255,.3);
}

.carousel__arrow--left {
  left: calc(50% - 290px);
}

.carousel__arrow--right {
  right: calc(50% - 290px);
}


/* =============================================
   DEPOIMENTOS
   ============================================= */
.depoimentos__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.depoimentos__header .section__tag {
  text-align: left;
}

.depoimentos__header .section__title {
  margin-bottom: 0;
}

.depoimentos__badge {
  text-align: right;
}

.depoimentos__score {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.stars {
  color: #FBBF24;
  font-size: 20px;
  letter-spacing: 2px;
}

.stars--sm {
  font-size: 14px;
}

.depoimentos__source {
  font-size: 13px;
  color: var(--gray-400);
}

.depoimentos-carousel {
  overflow: hidden;
}

.depoimentos-track {
  display: flex;
  transition: transform .4s ease;
}

.depoimentos-track .depoimento-card {
  min-width: calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
}

.depoimentos-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.dep-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.dep-arrow:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

.dep-dots {
  display: flex;
  gap: 6px;
}

.dep-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.dep-dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
}

.depoimento-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}

.depoimento-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.depoimento-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.depoimento-card__name {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

.depoimento-card__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
}


/* =============================================
   FORMULÁRIO
   ============================================= */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form__row {
  margin-bottom: 20px;
}

.form__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}

.form__input::placeholder {
  color: var(--gray-400);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 16px;
}

.form-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-side__map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  border: 1px solid var(--gray-200);
}

.form-side__map-placeholder i {
  font-size: 36px;
}

.form-side__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-side__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
}

.form-side__item i {
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
}

.form-side__map {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.form-side__nav-hint {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0 0 8px;
}

.form-side__nav-links {
  display: flex;
  gap: 12px;
  margin-bottom: 4px;
}

.form-side__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition);
  text-decoration: none;
}

.form-side__nav-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.form-side__nav-btn--waze {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

.form-side__nav-btn--waze:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.form-side__nav-btn i {
  font-size: 16px;
}


/* =============================================
   FAQ
   ============================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item[open] {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__tagline {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--cyan);
}

.footer__contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact i {
  color: var(--cyan);
  font-size: 16px;
}

.footer__social-icons {
  display: flex;
  gap: 12px;
}

.footer__social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition);
}

.footer__social-icons a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}


/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}


/* =============================================
   ANIMATIONS (fade-in on scroll)
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
  }

  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipe-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .carga__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .carga__image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .carga__content .section__tag,
  .carga__content .section__title {
    text-align: center;
  }

  .carga__content {
    text-align: center;
  }

  .carga__content .btn {
    margin: 0 auto;
  }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 100px 0 64px;
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__image {
    order: -1;
  }

  .hero__img {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  .carousel__img {
    max-height: 380px;
  }

  .carousel__arrow {
    width: 36px;
    height: 36px;
  }

  .carousel__arrow svg {
    width: 20px;
    height: 20px;
  }

  .carousel__arrow--left {
    left: 8px;
  }

  .carousel__arrow--right {
    right: 8px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .diferenciais__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .carga__benefits {
    grid-template-columns: 1fr;
  }

  .sobre__content .section__tag,
  .sobre__content .section__title {
    text-align: center;
  }

  .sobre__text {
    text-align: center;
  }

  .depoimentos__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .depoimentos__badge {
    text-align: left;
  }

  .depoimentos-track .depoimento-card {
    min-width: 100%;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 28px 20px;
  }

  .form__row--half {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .equipe-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}
