/* ==========================================================================
   plano-depoimentos.css — Seções #plano (Viaje Aos Poucos) e #depoimentos
   Importar APÓS destinos.css e ANTES de animations.css.
   ========================================================================== */


/* ==========================================================================
   SEÇÃO 1 — #plano (bloco de destaque com gradiente da marca)
   ========================================================================== */

#plano {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding-block: var(--secao-y);
}

/* Brilho radial decorativo — profundidade sem peso */
#plano::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(91, 208, 230, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(12, 59, 90, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Ondas SVG decorativas no fundo */
#plano::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFFFF' fill-opacity='0.06' d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,90 L0,90 Z'/%3E%3Cpath fill='%23FFFFFF' fill-opacity='0.04' d='M0,60 C360,20 720,80 1080,40 C1260,20 1380,60 1440,60 L1440,90 L0,90 Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Ícone de calendário flutuante — toque decorativo leve */
.plano__icone-flutuante {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 6vw, 7rem);
  width: clamp(80px, 10vw, 130px);
  height: clamp(80px, 10vw, 130px);
  opacity: 0.09;
  pointer-events: none;
  color: var(--branco);
}

/* Moedas decorativas à esquerda */
.plano__circulo-deco {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.plano__circulo-deco--1 {
  width: 240px;
  height: 240px;
  top: -60px;
  left: -60px;
}

.plano__circulo-deco--2 {
  width: 140px;
  height: 140px;
  top: 10px;
  left: 10px;
  border-color: rgba(255,255,255,0.07);
}

/* Card central do plano */
.plano__card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--raio) * 1.5);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4.5rem);
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 32px 64px -24px rgba(12, 59, 90, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Badge/selo pill */
.plano__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: var(--fonte-titulo);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.plano__badge-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--azul-ceu);
  flex-shrink: 0;
  animation: plano-pulso 2.2s ease-in-out infinite;
}

@keyframes plano-pulso {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.35); opacity: 0.7; }
}

/* Título */
.plano__titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.9rem, 3vw + 0.75rem, 3rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.plano__titulo .script {
  color: var(--azul-ceu);
}

/* Parágrafo principal */
.plano__texto {
  font-family: var(--fonte-texto);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.88);
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  text-wrap: pretty;
}

/* Linha de reassurance */
.plano__reassurance {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fonte-texto);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.plano__reassurance::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7l3 3 5-5' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

/* CTA coral */
.plano__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* Ícone SVG dentro do CTA */
.plano__cta-icone {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ==========================================================================
   SEÇÃO 2 — #depoimentos (grid de cards de testemunhos)
   ========================================================================== */

#depoimentos {
  background-color: var(--branco);
}

/* Cabeçalho */
.dep-cabecalho {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.dep-pre-titulo {
  display: block;
  margin-bottom: 0.75rem;
}

.dep-titulo {
  text-wrap: balance;
  max-width: 26ch;
  margin-inline: auto;
  margin-bottom: 0.875rem;
}

.dep-honestidade {
  font-family: var(--fonte-texto);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--texto-suave);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
}

/* Grid responsivo: 1 col mobile → 3 cols desktop */
.dep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 680px) {
  .dep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .dep-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card de depoimento */
.dep-card {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  border-radius: var(--raio);
  border: 1px solid rgba(22, 168, 201, 0.14);
  box-shadow:
    0 4px 24px -8px rgba(12, 59, 90, 0.1),
    0 1px 4px rgba(12, 59, 90, 0.04);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  transition:
    transform 260ms cubic-bezier(.25, .46, .45, .94),
    box-shadow 260ms cubic-bezier(.25, .46, .45, .94),
    border-color 260ms ease;
}

.dep-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px -12px rgba(12, 59, 90, 0.18),
    0 4px 12px rgba(12, 59, 90, 0.06);
  border-color: rgba(22, 168, 201, 0.32);
}

/* Aspas decorativas grandes */
.dep-card__aspas {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--fonte-titulo);
  font-size: 5rem;
  line-height: 1;
  color: var(--turquesa);
  opacity: 0.12;
  user-select: none;
  pointer-events: none;
  font-weight: 700;
  letter-spacing: -0.05em;
}

/* Estrelas */
.dep-card__estrelas {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.dep-card__estrela {
  width: 18px;
  height: 18px;
  color: #F5A623;
  flex-shrink: 0;
}

/* Citação */
.dep-card__citacao {
  font-family: var(--fonte-texto);
  font-size: clamp(0.9375rem, 0.4vw + 0.85rem, 1.0625rem);
  line-height: 1.72;
  color: var(--texto);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
  max-width: none;
  position: relative;
  z-index: 1;
}

/* Rodapé do card — avatar + nome */
.dep-card__autor {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid rgba(22, 168, 201, 0.1);
  padding-top: 1.125rem;
}

.dep-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquesa), var(--azul-ceu));
  flex-shrink: 0;
  font-family: var(--fonte-titulo);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 0.03em;
  box-shadow: 0 3px 10px -3px rgba(22, 168, 201, 0.45);
}

.dep-card__nome {
  font-family: var(--fonte-titulo);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--azul-profundo);
  line-height: 1.3;
  max-width: none;
}


/* ==========================================================================
   Acessibilidade — prefers-reduced-motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .plano__badge-dot {
    animation: none;
  }

  .dep-card {
    transition: none;
  }

  .dep-card:hover {
    transform: none;
  }
}
