/* ===========================================
   CIAP - Clínica Integrada de Atendimento Paliativo
   Folha de estilo compartilhada
   =========================================== */

:root {
  --azul: #22304B;
  --azul-claro: #34466b;
  --fundo: #F1EDE5;
  --fundo-puro: #FAF8F3;
  --cinza: #7A7F8F;
  --cinza-claro: #b3b7c1;
  --branco: #ffffff;
  --display: 'Cormorant Garamond', Georgia, serif;
  --corpo: 'Montserrat', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--corpo);
  color: var(--azul);
  background: var(--fundo);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.005em;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAVEGAÇÃO ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 237, 229, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122, 127, 143, 0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.logo .simbolo { width: 38px; height: 38px; flex-shrink: 0; }
.logo span { color: var(--cinza); font-weight: 400; }
.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--azul);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--azul);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.ativo::after { width: 100%; }
.nav-links a.ativo { color: var(--azul); }

.btn {
  display: inline-block;
  font-family: var(--corpo);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primario {
  background: var(--azul);
  color: var(--fundo) !important;
}
.btn-primario:hover {
  background: var(--azul-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 48, 75, 0.22);
}
.btn-vazado {
  background: transparent;
  color: var(--azul);
  border: 1.5px solid var(--azul);
}
.btn-vazado:hover {
  background: var(--azul);
  color: var(--fundo);
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--azul); margin: 5px 0; transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(34,48,75,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero .sobrescrito {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cinza);
  font-weight: 600;
  margin-bottom: 26px;
  display: block;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--azul);
  margin-bottom: 30px;
}
.hero h1 em { font-style: italic; color: var(--azul-claro); }
.hero p {
  font-size: 1.18rem;
  color: var(--cinza);
  max-width: 560px;
  margin-bottom: 42px;
  line-height: 1.8;
}
.hero-acoes { display: flex; gap: 18px; flex-wrap: wrap; }

/* Hero com imagem (duas colunas) */
.hero-foto { padding: 80px 0 90px; }
.hero-foto .hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-foto .hero-texto { max-width: 560px; }
.hero-foto .hero-texto h1 { font-size: clamp(2.3rem, 4.6vw, 3.9rem); }
.hero-imagem {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(34, 48, 75, 0.18);
  aspect-ratio: 4 / 5;
}
.hero-imagem img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}
.hero-imagem::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(34,48,75,0.12) 100%);
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero-foto .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-foto { padding: 50px 0 60px; }
  .hero-imagem { order: -1; }
}

/* ============ FILOSOFIA / FAIXA ============ */
.filosofia {
  background: var(--azul);
  color: var(--fundo);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.filosofia::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100 48C78 70,70 100,70 120C70 142,84 156,100 156C116 156,130 142,130 120C130 100,122 70,100 48Z" fill="%23F1EDE5"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
}
.filosofia .container { position: relative; z-index: 1; }
.filosofia p {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-style: italic;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}
.filosofia .marca {
  display: block;
  font-family: var(--corpo);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--cinza-claro);
  margin-top: 32px;
}

/* ============ SEÇÕES ============ */
.secao { padding: 100px 0; }
.secao-titulo { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.secao-titulo .sobrescrito {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cinza);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.secao-titulo h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--azul);
}
.secao-titulo p { color: var(--cinza); margin-top: 20px; font-size: 1.05rem; }

/* ============ MÉDICOS ============ */
.medicos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.medico {
  background: var(--fundo-puro);
  padding: 48px 44px;
  border-radius: 3px;
  border: 1px solid rgba(122, 127, 143, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.medico:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(34, 48, 75, 0.1);
}
.medico .avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--fundo);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.7rem;
  margin-bottom: 26px;
}
.medico-foto {
  width: calc(100% + 88px);
  margin-left: -44px;
  margin-top: -48px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px 3px 0 0;
  margin-bottom: 28px;
  display: block;
}
.medico h3 { font-size: 1.9rem; color: var(--azul); margin-bottom: 6px; }
.medico .papel {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinza);
  font-weight: 600;
  margin-bottom: 22px;
}
.medico p { color: var(--cinza); font-size: 0.98rem; margin-bottom: 18px; }
.medico ul { list-style: none; }
.medico li {
  color: var(--azul);
  font-size: 0.92rem;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.medico li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 7px; height: 7px;
  background: var(--azul-claro);
  border-radius: 50%;
}

/* ============ CARDS GENÉRICOS ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: var(--fundo-puro);
  padding: 40px 34px;
  border-radius: 3px;
  border: 1px solid rgba(122, 127, 143, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(34, 48, 75, 0.09);
}
.card .num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--cinza-claro);
  margin-bottom: 16px;
}
.card h3 { font-size: 1.5rem; color: var(--azul); margin-bottom: 14px; }
.card p { color: var(--cinza); font-size: 0.95rem; }

/* ============ CTA FINAL ============ */
.cta {
  background: var(--azul);
  color: var(--fundo);
  text-align: center;
  padding: 100px 0;
}
.cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 24px;
}
.cta p {
  color: var(--cinza-claro);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta .btn-primario {
  background: var(--fundo);
  color: var(--azul) !important;
}
.cta .btn-primario:hover { background: var(--branco); }

/* ============ RODAPÉ ============ */
.rodape {
  background: #1a2438;
  color: var(--cinza-claro);
  padding: 70px 0 36px;
}
.rodape-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.rodape .logo { color: var(--fundo); margin-bottom: 18px; display: block; }
.rodape p { font-size: 0.92rem; line-height: 1.8; }
.rodape h4 {
  font-family: var(--corpo);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fundo);
  margin-bottom: 20px;
}
.rodape ul { list-style: none; }
.rodape li { margin-bottom: 12px; font-size: 0.92rem; }
.rodape li a { transition: color 0.25s; }
.rodape li a:hover { color: var(--fundo); }
.rodape-medicos {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 4px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--cinza-claro);
  margin-bottom: 24px;
}
.rodape-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--cinza);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ ANIMAÇÃO DE ENTRADA ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visivel { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVO ============ */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 78px; right: 0;
    flex-direction: column;
    background: var(--fundo);
    width: 260px;
    height: calc(100vh - 78px);
    padding: 40px 32px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    align-items: flex-start;
  }
  .nav-links.aberto { transform: translateX(0); }
  .menu-toggle { display: block; }
  .medicos { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .rodape-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 48px 0 40px; }
  .hero::before { width: 300px; height: 300px; top: -10%; right: -30%; }
  .secao { padding: 48px 0; }
  .hero p { margin-bottom: 0; }
}

/* ============ SEÇÃO EMOCIONAL ============ */
.emocional {
  padding: 110px 0;
  background: var(--fundo-puro);
}
.emocional-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.emocional .sobrescrito {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cinza); font-weight: 600; margin-bottom: 26px; display: block;
}
.emocional h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  color: var(--azul); margin-bottom: 36px; line-height: 1.25;
}
.emocional p {
  font-size: 1.12rem; color: var(--cinza); line-height: 1.9; margin-bottom: 22px;
}
.emocional .destaque {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--azul);
  margin-top: 40px; line-height: 1.4;
}

/* ============ DIFERENCIAIS (grid de 6) ============ */
.grid-dif {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.dif {
  background: var(--fundo-puro);
  border: 1px solid rgba(122,127,143,0.16);
  border-radius: 4px; padding: 38px 32px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.dif:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(34,48,75,0.09); }
.dif .ico {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--azul); color: var(--fundo);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 22px;
}
.dif h3 { font-size: 1.45rem; color: var(--azul); margin-bottom: 12px; }
.dif p { color: var(--cinza); font-size: 0.95rem; line-height: 1.7; }

/* ============ COMO FUNCIONA (passos) ============ */
.passos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: passo; }
.passo { position: relative; padding-top: 20px; }
.passo .n {
  font-family: var(--display); font-size: 3rem; color: var(--cinza-claro);
  line-height: 1; margin-bottom: 16px; display: block;
}
.passo h3 { font-size: 1.3rem; color: var(--azul); margin-bottom: 10px; }
.passo p { color: var(--cinza); font-size: 0.92rem; line-height: 1.65; }

/* ============ DEPOIMENTOS ============ */
.depoimentos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.depo {
  background: var(--branco);
  border: 1px solid rgba(122,127,143,0.16);
  border-radius: 4px; padding: 36px 32px;
}
.depo .estrelas { color: #c9a227; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 18px; }
.depo .texto { font-size: 0.98rem; color: var(--azul); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.depo .autor { display: flex; align-items: center; gap: 14px; }
.depo .autor .ini {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--fundo); color: var(--azul);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.95rem; font-weight: 600;
}
.depo .autor .nome { font-weight: 600; font-size: 0.92rem; color: var(--azul); }
.depo .autor .det { font-size: 0.8rem; color: var(--cinza); }
.placeholder-nota {
  text-align: center; font-size: 0.85rem; color: var(--cinza);
  margin-top: 32px; font-style: italic;
}

/* ============ FRASE DE IMPACTO ============ */
.impacto {
  background: var(--azul); color: var(--fundo);
  padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.impacto::before {
  content: '';
  position: absolute;
  top: 50%; right: -60px;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100 48C78 70,70 100,70 120C70 142,84 156,100 156C116 156,130 142,130 120C130 100,122 70,100 48Z" fill="%23F1EDE5"/></svg>');
  background-repeat: no-repeat; background-position: center; background-size: contain;
  opacity: 0.04; z-index: 0;
}
.impacto .container { position: relative; z-index: 1; }
.impacto p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.4;
  max-width: 860px; margin: 0 auto 30px;
}
.impacto .sub { font-family: var(--corpo); font-style: normal; font-size: 1.05rem; color: var(--cinza-claro); max-width: 540px; margin: 0 auto 38px; }
.impacto .btn-primario { background: var(--fundo); color: var(--azul) !important; }
.impacto .btn-primario:hover { background: var(--branco); }

@media (max-width: 860px) {
  .grid-dif { grid-template-columns: 1fr; }
  .passos { grid-template-columns: 1fr 1fr; gap: 32px; }
  .depoimentos { grid-template-columns: 1fr; }
  .emocional { padding: 70px 0; }
  .impacto { padding: 70px 0; }
}

/* ============ BOTÃO FLUTUANTE WHATSAPP ============ */
.wpp-flut {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  z-index: 200;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wpp-flut:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
}
.wpp-flut svg { width: 34px; height: 34px; }
@media (max-width: 860px) {
  .wpp-flut { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wpp-flut svg { width: 30px; height: 30px; }
}

/* ============ PERFIL APROFUNDADO (zigue-zague) ============ */
.perfil-medico {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
  padding: 70px 0;
}
.perfil-medico.invertido { grid-template-columns: 1.15fr 0.85fr; }
.perfil-medico.invertido .perfil-foto-wrap { order: 2; }
.perfil-foto-wrap { position: relative; }
.perfil-foto-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(34,48,75,0.14);
  display: block;
}
.perfil-foto-wrap .selo-folha {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 84px; height: 84px;
  background: var(--fundo);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(34,48,75,0.16);
}
.perfil-medico.invertido .perfil-foto-wrap .selo-folha { right: auto; left: -22px; }
.perfil-foto-wrap .selo-folha svg { width: 52px; height: 52px; }
.perfil-texto .nome {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--azul);
  margin-bottom: 6px;
}
.perfil-texto .funcao {
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cinza); font-weight: 600; margin-bottom: 28px;
}
.perfil-texto p {
  color: var(--cinza); font-size: 1.02rem; line-height: 1.85; margin-bottom: 20px;
}
.perfil-texto p strong { color: var(--azul); font-weight: 600; }
.perfil-bloco {
  margin: 30px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid rgba(122,127,143,0.28);
}
.perfil-bloco h4 {
  font-family: var(--corpo); font-size: 0.76rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--azul); font-weight: 600; margin-bottom: 14px;
}
.perfil-bloco ul { list-style: none; }
.perfil-bloco li {
  color: var(--cinza); font-size: 0.96rem; padding-left: 22px;
  position: relative; margin-bottom: 11px; line-height: 1.55;
}
.perfil-bloco li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; background: var(--azul-claro); border-radius: 50%;
}
.perfil-frase {
  font-family: var(--display); font-style: italic;
  font-size: 1.4rem; color: var(--azul); line-height: 1.5;
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(122,127,143,0.22);
}
.apreencher {
  background: rgba(201,162,39,0.12);
  border-radius: 2px; padding: 1px 5px;
  font-style: normal; color: #8a6d16; font-size: 0.92em;
}
@media (max-width: 860px) {
  .perfil-medico, .perfil-medico.invertido { grid-template-columns: 1fr; gap: 36px; padding: 44px 0; }
  .perfil-medico.invertido .perfil-foto-wrap { order: 0; }
  .perfil-foto-wrap .selo-folha,
  .perfil-medico.invertido .perfil-foto-wrap .selo-folha { right: 18px; left: auto; bottom: -18px; width: 68px; height: 68px; }
}

/* ============ CARROSSEL DE DEPOIMENTOS ============ */
.carrossel-wrap { position: relative; margin-top: 20px; }
.carrossel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carrossel::-webkit-scrollbar { display: none; }
.depo-card {
  flex: 0 0 auto;
  width: 380px;
  max-width: 85vw;
  scroll-snap-align: center;
  background: var(--branco);
  border: 1px solid rgba(122,127,143,0.16);
  border-radius: 4px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.depo-card .aspas {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--cinza-claro);
  margin-bottom: 14px;
}
.depo-card .estrelas { color: #c9a227; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 18px; }
.depo-card .texto {
  font-size: 1rem; color: var(--azul); line-height: 1.8;
  font-style: italic; flex-grow: 1;
}
.carrossel-nav {
  display: flex; justify-content: center; gap: 14px; margin-top: 10px;
}
.carrossel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--azul); background: transparent;
  color: var(--azul); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.carrossel-btn:hover { background: var(--azul); color: var(--fundo); }
.depo-nota {
  text-align: center; font-size: 0.82rem; color: var(--cinza);
  margin-top: 28px; font-style: italic; max-width: 620px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
@media (max-width: 860px) {
  .depo-card { width: 300px; padding: 30px 26px; }
}
