/* ===========================
   style.css — Sergio Promotora
   Versão: limpa, organizada e estável
   =========================== */

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  font-size: 16px; /* base segura */
}

/* ===== VARIÁVEIS ===== */
:root{
  --primary: #5C036D;
  --primary-900: #3a0048;
  --accent: #AA3DBF;
  --muted: #6b6b6b;
  --card-bg: #f7f4f9;
  --glass: rgba(255,255,255,0.06);
  --radius-lg: 18px;
  --radius-md: 10px;
  --max-width: 1180px;
  --container-padding: 24px;
  --dourado: #ffd54f;

  /* altura da navbar — ajuste se precisar (px) */
  --navbar-height: 78px;
}


/* ===== UTILITÁRIOS ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* =========================
   NAVBAR — UNIFICADA (FIXA)
   ========================= */

/* Navbar principal - FIXA no topo */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: var(--navbar-height);      /* usa a variável */
  min-height: var(--navbar-height);  /* garante espaço */
  align-items: center;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, var(--primary) 0%, #48025d 60%);
  color: #fff;
  padding: 0 26px; /* padding horizontal apenas — vertical é controlado pela height */
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  overflow: visible;
}
/* garante que o conteúdo não fique debaixo da navbar */
body {
  padding-top: var(--navbar-height);
}


/* wrapper interno opcional */
.navbar-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* logo fixada à esquerda */
.logo-container {
  position: absolute;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 56px;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.2));
  transform-origin: center;
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%{ transform: rotate(0deg) scale(1); }
  50%{ transform: rotate(6deg) scale(1.02); }
  100%{ transform: rotate(0deg) scale(1); }
}

.logo-text {
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.2px;
}
.logo-text span { color: #e6d7f0; font-weight:700; }

/* links centralizados (desktop) */
nav { /* mantém sem conflitos */
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

/* link style */
.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .18s, transform .18s, color .18s;
}

.nav-links li a:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  color: #fff;
}

/* botão hambúrguer — por padrão escondido (desktop topo) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  position: absolute;
  right: 26px; /* default position inside navbar at right */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  padding: 8px;
  border-radius: 8px;
}

.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 4px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: transform .25s;
}

/* ===== NAVBAR MOBILE ===== */
@media (max-width: 820px) {

  .nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 40px;
    z-index: 1001;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    background: linear-gradient(180deg, var(--primary), #4a0a5d);
    border-radius: 14px;
    padding: 16px;
    width: 220px;

    display: none;
    flex-direction: column;
    gap: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,0.12);
  }
}


/* ---- DESKTOP (aparecer hambúrguer via JS ao rolar) -------- */
@media (min-width: 821px) {
  /* .nav-toggle permanece hidden por padrão; JS vai adicionar .show */
  .nav-toggle.show {
      display: block;
  }
}
/* Botão hambúrguer - base */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}

/* Mobile: sempre visível */
@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
}

/* Desktop: só aparece quando ativado via JS */
.nav-toggle.desktop-visible {
  display: block;
}

/* ===== SIMULADOR (Hero / Top) ===== */
.simulador-container {
  background: linear-gradient(90deg, rgba(72,2,93,0.98) 0%, rgba(0,27,50,0.98) 100%);
  color: #fff;
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.simulador-container h2 { text-align:center; margin-bottom:22px; font-size:1.8rem; font-weight:800; letter-spacing:0.2px; }

/* card wrapper */
.simulador {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: stretch;
}


/* left column (inputs) */
.lado-esquerdo {
  background: rgba(255,255,255,0.06);
  padding: 26px;
  border-radius: var(--radius-lg);
  min-height: 520px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lado-esquerdo label { display:block; font-weight:700; margin-top:8px; margin-bottom:8px; color:#f3eaf8; }
.lado-esquerdo input[type="number"],
.lado-esquerdo select {
  width:100%; padding:10px 12px; border-radius:10px; border:none; outline:none; font-size:16px;
  margin-bottom:10px;
}
.range-row { margin-top:6px; margin-bottom:6px; display:flex; align-items:center; gap:12px; }
.valor, .parcelas { font-size:28px; font-weight:800; color:#fff; margin-bottom:8px; }

/* range styling */
input[type="range"]{ width:100%; -webkit-appearance:none; appearance:none; height:6px; border-radius:6px; background:linear-gradient(90deg,#e9d3ff 0%, rgba(255,255,255,0.12) 100%); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance:none; width:18px; height:18px; border-radius:50%; background:var(--accent); box-shadow: 0 6px 14px rgba(0,0,0,0.25); cursor:pointer; }

/* resultado (right column) */
.resultado {
  background: #fff;
  color: var(--primary-900);
  border-radius: 22px;
  padding: 26px;
  min-height: 520px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resultado h3 { font-size:1.2rem; margin-bottom:2px; color:var(--primary-900); }
.resultado p { font-weight:600; color: #333; }
.parcelas-resultado { font-size:1.45rem; color:var(--primary-900); }

/* botões */
/* BOTÃO WHATSAPP — ESTILO BANCO */
#whatsEnviar {
  margin-top: 12px;
  padding: 14px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(90deg, #5C036D 0%, #AA3DBF 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(90, 20, 120, 0.18);
  transition: 
      transform .15s ease,
      box-shadow .20s ease,
      background .25s ease,
      filter .25s ease;
  border: 1px solid rgba(255,255,255,0.18);
}

#whatsEnviar:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(90, 20, 120, 0.28);
  background: linear-gradient(90deg, #6f0c82 0%, #c04bd8 100%);
  filter: brightness(1.05);
}

#whatsEnviar:active {
  transform: scale(0.97);
  box-shadow: 0 6px 14px rgba(90, 20, 120, 0.22);
}


/* pulse image under button */
.pulse-animation { width:110px; opacity:0.85; display:block; margin:14px auto 0; animation:pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%{ transform:scale(1);} 50%{ transform:scale(1.08);} 100%{ transform:scale(1);} }

/* hero content (below simulador if needed) */
.hero {
  background: transparent;
  padding: 46px 0;
  display:flex; align-items:center; justify-content:center;
}
.hero-content { max-width:720px; text-align:center; }
.hero-content h2 { color:var(--primary-900); font-size:2rem; margin-bottom:12px; }
.hero-content p { color:var(--muted); margin-bottom:18px; }
.btn, .btn-secondary {
  padding:12px 20px; border-radius:10px; text-decoration:none; font-weight:800; display:inline-block;
}
.btn { background:var(--primary); color:#fff; margin-right:10px; }
.btn-secondary { background:transparent; border:2px solid var(--primary); color:var(--primary); }

/* BENEFÍCIOS & CARDS */
.beneficios { padding:40px 0; background: #fff; }
.beneficios-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:18px; margin-top:18px; }
.beneficio-card {
  background:var(--card-bg); padding:18px; border-radius:12px; box-shadow:0 8px 20px rgba(0,0,0,0.06); transition: transform .24s, box-shadow .24s;
}
.beneficio-card:hover { transform: translateY(-8px); box-shadow:0 16px 36px rgba(0,0,0,0.10); }

/* SERVIÇOS */
.servicos-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:18px; margin-top:12px; }
.servico-item { background: #fff8ff; padding:18px; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06); }

/* FAQ */
.faq-section { padding:36px 0; }
.faq-item { margin-bottom:12px; }
.faq-pergunta {
  width:100%; background:var(--primary); color:#fff; padding:12px; border-radius:10px; cursor:pointer; font-weight:700;
}
.faq-resposta { max-height:0; overflow:hidden; transition: max-height .38s ease; background: #fff; padding:0 12px; border-radius:8px; margin-top:8px; }

/* CONTATO */
.contato-box { background:var(--card-bg); padding:18px; border-radius:12px; text-align:center; box-shadow:0 8px 18px rgba(0,0,0,0.06); }

/* GLOW DECORATIVO no canto da seção de simulador */
.simulador-container::before {
  content:"";
  position:absolute; right:-80px; top:-80px; width:420px; height:420px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 35%), linear-gradient(45deg, rgba(170,61,191,0.08), rgba(92,3,109,0.08));
  border-radius:50%;
  filter: blur(40px);
  pointer-events:none;
  transform:rotate(12deg);
}

/* ===== RESPONSIVIDADE EXTRA ===== */
@media (max-width: 980px) {
  .simulador { gap:18px; }
  .lado-esquerdo { width: 100%; max-width:720px; }
  .resultado { width: 100%; max-width:420px; }
  .hero-content h2 { font-size:1.6rem; }
}

/* mobile nav */
@media (max-width: 820px) {
  .nav-links { display:none; position:absolute; top:66px; right:18px; background:linear-gradient(180deg,var(--primary), #4a0a5d); padding:14px; border-radius:12px; box-shadow:0 8px 30px rgba(0,0,0,0.25); width:200px; flex-direction:column; }
  .nav-links a { padding:10px 8px; display:block; }
  .nav-toggle { display:block; }
}

/* tiny screens */
@media (max-width:420px) {
  .logo-text { font-size:18px; }
  .resultado { padding:18px; border-radius:12px; }
  .lado-esquerdo label { font-size:14px; }
  .valor, .parcelas { font-size:22px; }
}

/* small visual fixes */
section { padding: 40px 0; }

/* Títulos das seções */
.beneficios h2,
.servicos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Container dos cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

/* Cards modernos estilo bancos */
.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.25s ease;
    border: 1px solid #f0f0f0;
}

/* Ícones */
.card .icon {
    font-size: 2.4rem;
    margin-bottom: 15px;
    display: block;
}

/* Título do card */
.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

/* Texto */
.card p {
    font-size: 0.95rem;
    color: #555;
}

/* Hover elegante estilo bancos */
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}
/* ----- CONTATO (PADRÃO BANCOS) ----- */

.contato-section {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
    margin-top: 60px;
}

.contato-section h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #1b1b1b;
}

.contato-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

/* FORM */
.contato-form {
    max-width: 650px;
    background: #f7f9fb;
    padding: 30px;
    border-radius: 14px;
    margin: auto;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-duo {
    display: flex;
    gap: 12px;
}

.input-duo input {
    flex: 1;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    background: #fff;
    transition: 0.25s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #0077ff;
    box-shadow: 0px 0px 8px rgba(0,119,255,0.25);
    outline: none;
}

/* BOTÃO */
.contato-btn {
    width: 100%;
    padding: 15px;
    border: none;
    font-size: 1.1rem;
    border-radius: 10px;
    background: linear-gradient(to right, #0077ff, #0059c9);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.contato-btn:hover {
    background: linear-gradient(to right, #0059c9, #0042a8);
    transform: translateY(-2px);
    box-shadow: 0px 6px 18px rgba(0, 92, 200, 0.35);
}

/* MOBILE */
@media (max-width: 600px) {
    .input-duo {
        flex-direction: column;
    }
}
/* ===== CPF & Consultar ===== */
#campo-cpf { margin-top: 10px; }

.cpf-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
/* CONTAINER DO VÍDEO */
.video-box {
    width: 100%;
    max-width: 420px;          /* desktop controlado */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VÍDEO */
.video-box video {
     width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;      /* NÃO corta */
    background: #000;          /* evita bordas brancas */
    border-radius: 16px;
}

#cpf {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}

#cpf:focus {
  border-color: #5C036D;
  box-shadow: 0 0 6px rgba(92, 3, 109, 0.12);
  outline: none;
}

/* botão Consultar */
.btn-consultar {
  padding: 10px 12px;
  background: #ffffff;
  color: var(--primary);
  border-radius: 8px;
  border: 1px solid rgba(92,3,109,0.12);
  cursor: pointer;
  font-weight: 700;
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}

.btn-consultar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(92,3,109,0.12);
}

/* mensagem */
.cpf-msg {
  margin-top: 8px;
  font-weight: 700;
  color: #12a454; /* verde */
  opacity: 0;
  transition: opacity .28s ease;
}

.cpf-msg.show {
  opacity: 1;
}

/* mensagem de erro (quando cpf inválido) */
.cpf-msg.error {
  color: #d64545;
}
/* ===== SIMULADOR COM CARROSSEL ===== */
.simulador-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Carrossel */
.simulador-carousel {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}


 .carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}


.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

@media (max-width: 1024px) {
  .simulador {
    grid-template-columns: 1fr;
  }

  .lado-esquerdo,
  .resultado,
  .simulador-carousel {
    min-height: auto;
  }

  .simulador-carousel {
    height: 260px;
  }
}
/* =========================
   ANIMAÇÃO DOS BOTÕES CTA
   ========================= */

/* Base comum */
.btn,
.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

/* ===== BOTÃO WHATSAPP ===== */
.btn {
    animation: pulseWhats 2.5s infinite;
}

/* Hover Whats */
.btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 36px rgba(92, 3, 109, 0.35);
    filter: brightness(1.05);
}

/* Animação suave contínua */
@keyframes pulseWhats {
    0% {
        box-shadow: 0 0 0 0 rgba(92, 3, 109, 0.45);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(92, 3, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(92, 3, 109, 0);
    }
}

/* ===== BOTÃO SIMULAR AGORA ===== */
.btn-secondary {
    animation: floatSimular 3.2s ease-in-out infinite;
}

/* Hover Simular */
.btn-secondary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 26px rgba(92, 3, 109, 0.28);
}

/* Movimento elegante (sobe e desce leve) */
@keyframes floatSimular {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ===== MOBILE — animação mais sutil ===== */
@media (max-width: 768px) {
    .btn {
        animation: pulseWhats 3.2s infinite;
    }

    .btn-secondary {
        animation: none;
    }
}

.gif-box {
    width: 100%;
    max-width: 420px;     /* controla no desktop */
    margin: 0 auto;
}

.gif-box img {
    width: 100%;
    height: auto;        /* mantém proporção */
    display: block;
    border-radius: 16px;
}
@media (max-width: 600px) {
    .gif-box {
        max-width: 100%;
    }
}
/* ===== MODAL VENDEDORES ===== */
.modal-vendedores {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-vendedores.ativo {
    display: flex;
}

.modal-conteudo {
    background: #fff;
    width: 90%;
    max-width: 360px;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.modal-conteudo h3 {
    margin-bottom: 20px;
    color: #5C036D; /* roxo do site */
}

.vendedor-btn {
    width: 100%;
    padding: 25px;
    margin-bottom: 12px;
    border: none;
    border-radius: 10px;
    background: #5C036D;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.vendedor-btn:hover {
    opacity: 0.9;
}

.btn-fechar {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: #ccc;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: normal;
}
.valor,
.parcelas,
.parcelas-resultado {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.resultado p {
    margin-bottom: -1px;
}

.resultado strong {
    font-size: 23px;
}
@media (max-width: 768px) {

    h2 {
        font-size: 24px;
    }

    .valor,
    .parcelas {
        font-size: 22px;
    }
}

.pagina-simples {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

.pagina-simples h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.pagina-simples p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}
html {
    scroll-behavior: smooth;
}
/* ===== SEÇÃO INSTITUCIONAL ===== */

.institucional {
    background: #f7f4f9;
    padding: 70px 20px;
}

.institucional-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* MISSÃO */
.institucional-missao h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #3a0048;
}

.institucional-missao p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
}

/* FEEDBACKS */
.institucional-feedbacks h3,
.institucional-redes h3 {
    margin-bottom: 16px;
    color: #3a0048;
}

.feedback-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-bottom: 14px;
}

.feedback-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
}

.feedback-card span {
    font-size: 0.85rem;
    color: #666;
}

/* REDES SOCIAIS */
.institucional-redes {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rede-btn {
    display: inline-block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.rede-btn.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
}

.rede-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.rede-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .institucional-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .institucional-redes {
        align-items: center;
    }

    .rede-btn {
        width: 100%;
        max-width: 320px;
    }
}
/* ===== FEEDBACK COM FOTO ===== */

.feedback-cliente {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feedback-cliente img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e6d7f0;
}

.feedback-text {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 600px) {
    .feedback-cliente {
        align-items: center;
    }

    .feedback-cliente img {
        width: 42px;
        height: 42px;
    }
}
/* ===== HEADER INSTITUCIONAL ===== */

.header-institucional {
    position: relative;
    background: linear-gradient(135deg, #3a0048, #5C036D);
    padding: 70px 20px 90px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* LOGO DE FUNDO (MARCA D’ÁGUA) */
.header-institucional::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("imagens/logobranca.png") center no-repeat;
    background-size: 380px;
    opacity: 0.06;
    pointer-events: none;
}

/* CONTEÚDO */
.header-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.header-logo {
    width: 90px;
    margin-bottom: 14px;
}

.header-institucional h1 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.header-institucional p {
    font-size: 1.05rem;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
    .header-institucional {
        padding: 60px 16px 80px;
    }

    .header-logo {
        width: 72px;
    }

    .header-institucional h1 {
        font-size: 1.9rem;
    }

    .header-institucional p {
        font-size: 0.95rem;
    }
}
.institucional {
    margin-top: -40px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}
