/* ============================================================
   Bah! Aquarismo — CSS Principal
   Cores da marca:
     Azul marinho: #1B2F6E
     Dourado/Âmbar: #C8901A
     Branco: #FFFFFF
   ============================================================ */

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

:root {
  --azul:        #1B2F6E;
  --azul-escuro: #0F1D45;
  --azul-claro:  #2A4494;
  --dourado:     #C8901A;
  --dourado-claro: #E0A832;
  --dourado-bg:  #FFF8E7;
  --branco:      #FFFFFF;
  --cinza-50:    #F8F9FA;
  --cinza-100:   #F0F2F5;
  --cinza-200:   #E2E5EA;
  --cinza-400:   #9BA3AF;
  --cinza-600:   #5A6270;
  --cinza-800:   #2D3239;
  --cinza-900:   #1A1D21;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:   0 16px 48px rgba(0,0,0,.16);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  .3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cinza-800);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--azul);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--dourado); }

ul, ol { list-style: none; }

address { font-style: normal; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--azul);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: .5em;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin-bottom: .4em;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--cinza-600);
  max-width: 640px;
  margin: .5rem auto 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dourado);
  color: var(--branco);
  border-color: var(--dourado);
}
.btn-primary:hover {
  background: var(--dourado-claro);
  border-color: var(--dourado-claro);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--branco);
  color: var(--azul);
  border-color: var(--azul);
}
.btn-secondary:hover {
  background: var(--azul);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--azul);
  border-color: var(--azul);
}
.btn-outline:hover {
  background: var(--azul);
  color: var(--branco);
}

.btn-outline-gold {
  background: transparent;
  color: var(--dourado);
  border-color: var(--dourado);
}
.btn-outline-gold:hover {
  background: var(--dourado);
  color: var(--branco);
}

.btn-large { padding: 14px 32px; font-size: 1.05rem; }
.btn-xlarge { padding: 16px 36px; font-size: 1.1rem; border-radius: var(--radius-md); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo-link img {
  height: 44px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--cinza-800);
  position: relative;
}

.nav-list a:not(.btn-nav-wpp):hover {
  color: var(--dourado);
}

.nav-list a:not(.btn-nav-wpp)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dourado);
  transition: width var(--transition);
}

.nav-list a:not(.btn-nav-wpp):hover::after {
  width: 100%;
}

.btn-nav-wpp {
  background: var(--dourado);
  color: var(--branco) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: .85rem !important;
}
.btn-nav-wpp:hover {
  background: var(--dourado-claro);
  color: var(--branco) !important;
  transform: translateY(-1px);
}

/* Menu hambúrguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--cinza-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 29, 69, .78) 0%,
    rgba(15, 29, 69, .65) 50%,
    rgba(15, 29, 69, .85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0;
  max-width: 800px;
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo img {
  display: inline-block;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--azul);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dourado);
}

.trust-item span {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}

/* ── SEÇÕES GENÉRICAS ── */
.servicos-section,
.diferenciais-section,
.processo-section,
.faq-section {
  padding: 80px 0;
}

.problemas-section,
.depoimentos-section,
.cta-final-section {
  padding: 80px 0;
}

.diferenciais-section {
  background: var(--cinza-50);
}

.problemas-section {
  background: var(--azul);
}

.processo-section {
  background: var(--cinza-50);
}

.depoimentos-section {
  background: var(--branco);
}

.cta-final-section {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
}

/* ── SERVIÇOS GRID ── */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servico-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.servico-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--azul);
}

.card-body p {
  font-size: .92rem;
  color: var(--cinza-600);
  margin-bottom: 20px;
  flex: 1;
}

.card-body .btn {
  align-self: flex-start;
  font-size: .85rem;
  padding: 10px 18px;
}

/* ── DIFERENCIAIS GRID ── */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.diferencial-item {
  background: var(--branco);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}

.diferencial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diferencial-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}

.diferencial-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--azul);
}

.diferencial-item p {
  font-size: .9rem;
  color: var(--cinza-600);
}

/* ── PROBLEMAS ── */
.problemas-inner {
  max-width: 720px;
  margin: 0 auto;
}

.problemas-texto h2 {
  color: var(--branco);
  text-align: center;
  margin-bottom: 32px;
}

.problemas-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.problemas-list li {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  padding: 14px 20px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--dourado);
  transition: background var(--transition);
}

.problemas-list li:hover {
  background: rgba(255,255,255,.14);
}

.problemas-list li em {
  font-style: italic;
}

.problemas-cta-text {
  color: rgba(255,255,255,.8);
  text-align: center;
  margin-bottom: 24px;
}

.problemas-section .btn {
  display: flex;
  margin: 0 auto;
  width: fit-content;
}

/* ── PROCESSO ── */
.processo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  counter-reset: step;
}

.processo-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--cinza-200);
  position: relative;
}

.processo-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dourado);
  min-width: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 6px;
}

.step-content p {
  font-size: .92rem;
  color: var(--cinza-600);
}

.processo-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── DEPOIMENTOS ── */
.rating-summary {
  margin-top: 16px;
}

.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stars-big {
  font-size: 1.8rem;
  color: var(--dourado);
  letter-spacing: 2px;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--azul);
}

.rating-meta {
  font-size: .9rem;
  color: var(--cinza-600);
  margin-top: 4px;
}

.btn-ver-google {
  display: inline-block;
  margin-top: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dourado);
}
.btn-ver-google:hover {
  color: var(--dourado-claro);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.depoimento-card {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--dourado);
}

.depoimento-card .stars {
  font-size: 1.2rem;
  color: var(--dourado);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.depoimento-card p {
  font-size: .92rem;
  color: var(--cinza-600);
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}

.depoimento-card footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--cinza-100);
  padding-top: 14px;
}

.depoimento-autor strong {
  display: block;
  font-size: .9rem;
  color: var(--azul);
}

.depoimento-autor span {
  font-size: .78rem;
  color: var(--cinza-400);
}

.depoimento-autor em {
  display: block;
  font-size: .72rem;
  color: var(--cinza-400);
  font-style: normal;
}

.google-badge {
  opacity: .5;
  filter: grayscale(1);
}

.projetos-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ── LOJA FÍSICA ── */
.loja-section {
  padding: 80px 0;
  background: var(--cinza-50);
}

.loja-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.loja-info h2 {
  margin-bottom: 12px;
}

.loja-info > p {
  color: var(--cinza-600);
  margin-bottom: 28px;
}

.loja-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.address-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.address-item span:first-child {
  font-size: 1.2rem;
  margin-top: 2px;
}

.address-item strong {
  display: block;
  font-size: .82rem;
  color: var(--cinza-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.address-item a {
  color: var(--azul);
  font-weight: 500;
}

.horarios-box {
  background: var(--branco);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cinza-200);
  margin-top: 28px;
  margin-bottom: 28px;
}

.horarios-box h3 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 12px;
}

.horarios-box li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--cinza-100);
  font-size: .9rem;
}

.horarios-box li:last-child {
  border-bottom: none;
}

.horarios-box li span {
  color: var(--cinza-600);
}

.horarios-box li strong {
  color: var(--azul);
}

.loja-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.loja-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.loja-mapa iframe {
  display: block;
}

/* ── GALERIA DA LOJA (CARROSSEL) ── */
.galeria-loja {
  padding: 48px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.galeria-titulo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul);
  text-align: center;
  margin-bottom: 24px;
}

.galeria-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.galeria-track-container {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-md);
}

.galeria-track {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
  cursor: grab;
}

.galeria-track.dragging {
  transition: none;
  cursor: grabbing;
}

.galeria-slide {
  flex: 0 0 auto;
  width: 280px;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.galeria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .4s ease, filter .4s ease;
  display: block;
}

.galeria-img:hover {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* Setas do carrossel */
.galeria-seta {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--cinza-200);
  background: var(--branco);
  color: var(--azul);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.galeria-seta:hover {
  background: var(--azul);
  border-color: var(--azul);
  color: var(--branco);
}

.galeria-seta:disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

/* Contador */
.galeria-contador {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 48px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--cinza-400);
  letter-spacing: .5px;
}

/* ── LIGHTBOX FULLSCREEN ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-conteudo {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 60px rgba(0,0,0,.5);
  animation: lbFadeIn .3s ease forwards;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-fechar {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--branco);
  font-size: 2.2rem;
  font-weight: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.lightbox-fechar:hover {
  background: rgba(255,255,255,.25);
  transform: rotate(90deg);
}

.lightbox-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: var(--branco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-seta:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
}

.lightbox-seta-esq { left: 20px; }
.lightbox-seta-dir { right: 20px; }

.lightbox-contador {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,.6);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── FAQ ── */
.faq-section {
  background: var(--branco);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cinza-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--cinza-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cinza-800);
  margin: 0;
  transition: color var(--transition);
}

.faq-question:hover h3 {
  color: var(--dourado);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dourado);
  min-width: 24px;
  text-align: center;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-answer p {
  font-size: .92rem;
  color: var(--cinza-600);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ── CTA FINAL ── */
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--branco);
  margin-bottom: 16px;
}

.cta-inner > p {
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-horario {
  margin-top: 24px;
  color: rgba(255,255,255,.5);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--cinza-900);
  color: rgba(255,255,255,.7);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img {
  margin-bottom: 16px;
  opacity: .9;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 600;
}
.footer-social a:hover {
  color: var(--dourado);
}

.footer-nav h3,
.footer-contato h3 {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
}
.footer-nav a:hover {
  color: var(--branco);
}

.footer-contato a {
  color: rgba(255,255,255,.6);
}
.footer-contato a:hover {
  color: var(--dourado);
}

.footer-contato p {
  font-size: .88rem;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a {
  color: rgba(255,255,255,.4);
}
.footer-bottom a:hover {
  color: var(--branco);
}

/* ── BOTÃO FLUTUANTE WHATSAPP ── */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: wppPulse 2s infinite;
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

@keyframes wppPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .loja-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--branco);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 20px;
    box-shadow: var(--shadow-xl);
    transition: right .35s ease;
    z-index: 1000;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-list a {
    font-size: 1rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

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

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

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .loja-ctas {
    flex-direction: column;
  }

  .projetos-cta {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .processo-step {
    gap: 16px;
  }

  .step-num {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .servicos-section,
  .diferenciais-section,
  .processo-section,
  .faq-section,
  .problemas-section,
  .depoimentos-section,
  .cta-final-section,
  .loja-section {
    padding: 56px 0;
  }

  /* Galeria mobile */
  .galeria-loja {
    padding: 36px 16px 0;
  }

  .galeria-slide {
    width: 220px;
    height: 220px;
  }

  .galeria-seta {
    width: 36px;
    height: 36px;
  }

  .lightbox-seta-esq { left: 8px; }
  .lightbox-seta-dir { right: 8px; }

  .lightbox-seta {
    width: 40px;
    height: 40px;
  }

  .lightbox-fechar {
    top: 12px;
    right: 12px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

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

  h2 {
    font-size: 1.5rem;
  }
}
