:root {
  --azul: #0077B6;
  --branco: #FFFFFF;
  --cinza-claro: #E5E5E5;
  --laranja: #FF6B35;
  --preto: #111111;
  --cinza-texto: #555555;
  --max-width: 1100px;
}

/* RESET BÁSICO */

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

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--preto);
  background-color: var(--branco);
  line-height: 1.6;
}

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

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* HEADER */

header {
  background-color: var(--branco);
  border-bottom: 1px solid #dddddd;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--azul);
}

.logo span {
  color: var(--laranja);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.95rem;
  color: var(--cinza-texto);
}

nav a:hover {
  color: var(--azul);
}

/* BOTÕES */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--laranja);
  color: var(--branco);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.32);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.45);
  background-color: #ff5a1e;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--azul);
  border: 1px solid var(--azul);
}

.btn-secondary:hover {
  background-color: var(--azul);
  color: var(--branco);
}

/* HERO */

#hero {
  background: linear-gradient(135deg, #f5fbff, #ffffff);
  padding: 3rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  line-height: 1.15;
  color: var(--azul);
  margin-bottom: 0.85rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--cinza-texto);
  margin-bottom: 1.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--cinza-texto);
}

.hero-badge {
  background-color: var(--branco);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid #d9e3ec;
}

.hero-right {
  position: relative;
  padding: 1rem;
}

.hero-card {
  background-color: var(--branco);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e1ecf5;
}

.hero-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--preto);
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  margin-bottom: 0.75rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--cinza-texto);
  margin-top: 0.75rem;
}

/* SEÇÕES GENÉRICAS */

section {
  padding: 3.5rem 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--preto);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--azul), var(--laranja));
  border-radius: 999px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  margin-bottom: 2rem;
}

/* CARDS COMPARTILHADOS */

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 340px;          /* um pouco mais de altura */
  padding-bottom: 1.25rem;    /* espaço para o botão respirar */
  overflow: visible;          /* NÃO corta o conteúdo */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.service-media {
  width: 100%;
  max-height: 260px; /* limite para nao ficar gigante */
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: auto;      /* AUTO = imagem inteira */
  object-fit: contain; /* mostra a foto toda */
  display: block;
}


.service-body {
  padding: 1rem 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.service-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--preto);
  margin-top: 0.2rem;
}

.service-card a.btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;          /* CENTRALIZA HORIZONTALMENTE */
  align-self: center;      /* evita forçar para a esquerda */
}



/* SERVIÇOS */

#servicos {
  background-color: var(--cinza-claro);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
align-items: stretch;   /* todos os cards com mesma altura na linha */
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--azul);
  margin-bottom: 0.25rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  flex-grow: 1;
}

.service-tag {
  font-size: 0.8rem;
  color: var(--cinza-texto);
  margin-top: 0.35rem;
}
/* AJUSTE ESPECÍFICO PARA OS CARDS DE SERVIÇO */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 300px;           /* define uma altura mínima parecida para todos */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* garante que o botão fique sempre colado no final do card */
.service-card a.btn-secondary {
  margin: 0 1.25rem 0;   /* tira o margin-bottom exagerado */
  align-self: flex-start;
}


/* PROCESSO */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.process-step-number {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--laranja);
  margin-bottom: 0.35rem;
}

.process-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.process-step-text {
  font-size: 0.85rem;
  color: var(--cinza-texto);
}

/* ANTES/DEPOIS */

#antes-depois {
  background-color: #f3f6fb;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.ba-box {
  background-color: var(--branco);
  border-radius: 16px;
  padding: 1rem;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  color: var(--cinza-texto);
}

.preview-video {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
  cursor: pointer;
  opacity: 0.96;
}

.preview-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  opacity: 1;
}
.ba-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.ba-label {
  display: inline-block;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.ba-before {
  background-color: #b91c1c; /* vermelho discreto */
}

.ba-after {
  background-color: #15803d; /* verde discreto */
}

.ba-location {
  font-size: 0.8rem;
  color: var(--cinza-texto);
}

/* DEPOIMENTOS */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  font-size: 0.9rem;
  color: var(--cinza-texto);
}

.testimonial-name {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--preto);
  font-size: 0.85rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--cinza-texto);
}

/* ÁREAS - ATENDIMENTO EM BH */

#areas {
  background-color: #f9fafb;
}

.areas-inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.areas-list,
.areas-map {
  flex: 1;
  min-width: 0;
}

.areas-list {
  font-size: 0.95rem;
  color: var(--cinza-texto);
}

.areas-list strong {
  color: var(--azul);
}

.areas-map {
  border-radius: 16px;
  background: linear-gradient(135deg, var(--azul), #00b4d8);
  color: var(--branco);
  padding: 1.5rem;
  font-size: 0.9rem;
}

.areas-map iframe {
  width: 100%;
  min-height: 260px;
  border-radius: 12px;
  border: 0;
  display: block;
  margin-top: 0.75rem;
}

/* CONTATO */

#contato {
  background-color: var(--cinza-claro);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: flex-start;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--azul);
}

.form-row {
  margin-bottom: 0.85rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--cinza-texto);
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #d0d7de;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.15);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* FOOTER */

footer {
  background-color: #0f172a;
  border-top: none;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* parte de cima: links + redes sociais */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-menu h4,
.footer-social h4 {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li + li {
  margin-top: 0.2rem;
}

.footer-menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-menu a:hover {
  color: #facc15; /* destaque leve no hover */
}

/* ícones das redes sociais */
.footer-social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.footer-social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #facc15;   /* amarelo/dourado */
  color: #111827;              /* quase preto */
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.footer-social-icons a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  background-color: #eab308;
}

/* linha de baixo: direitos + LA Marketing */
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}

/* responsivo */
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ========================= */
/* BOTÃO WHATSAPP FLUTUANTE */
/* ========================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #25d366; /* verde WhatsApp */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.whatsapp-icon {
  font-size: 34px;     /* tamanho da logo */
  color: #ffffff;      /* ícone branco */
}


/* MENU MOBILE */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--azul);
  font-size: 2rem;
  cursor: pointer;
}

/* RESPONSIVIDADE GERAL */

@media (max-width: 900px) {
  .container {
    width: 92%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .before-after-grid {
    grid-template-columns: 1fr 1fr;
  }

  .areas-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .areas-list,
  .areas-map {
    width: 100%;
  }

  /* menu some, botão aparece */
  nav ul {
    display: none;
  }

  nav ul.show {
    display: flex;
    flex-direction: column;
    background: var(--branco);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    gap: 0.75rem;
    z-index: 25;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}.testimonial-card {
  position: relative;
  padding-top: 1.5rem;
}

.testimonial-icon {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  font-size: 1.2rem;
  color: rgba(148, 163, 184, 0.5);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--cinza-texto);
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.testimonial-name {
  margin-top: 0.15rem;
  font-weight: 600;
  color: var(--preto);
  font-size: 0.85rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--cinza-texto);
}

.testimonial-source {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}


/* ========================= */
/* ANIMAÇÕES DE SCROLL      */
/* ========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}
/* HERO NOVO - FOTO DO ALEXANDRE EM TELA CHEIA */

#hero {
  position: relative;
  padding: 5rem 0 4rem;
  color: #ffffff;
  background: url("imagens/alexandre-perfil.jpg") center center / cover no-repeat;
}

/* overlay escuro pra deixar o texto legível */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.45)
  );
}

.hero-full {
  position: relative;
  z-index: 1; /* fica acima do overlay */
}

.hero-content {
  max-width: 520px;
}

.hero-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #e5e7eb;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.hero-badge {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #e5e7eb;
}

/* RESPONSIVO DO HERO NOVO */

@media (max-width: 900px) {
  #hero {
    padding: 4rem 0 3rem;
    background-position: center;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
#faq {
  background-color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.faq-item {
  background-color: var(--branco);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid #e2e2e2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--preto);
}

.faq-answer {
  font-size: 0.85rem;
  color: var(--cinza-texto);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-source {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
