* { box-sizing: border-box; }

body {
  margin: 0; font-family: 'Poppins', sans-serif; text-align: center;
  background: radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.4), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255, 200, 150, 0.4), transparent 40%),
              linear-gradient(180deg, #fff0f5, #ffe4e1);
  color: #7a2d2d; min-height: 100vh; overflow-x: hidden;
}

.top-banner {
  width: 100%; background: linear-gradient(45deg, #ff758c 0%, #ff7eb3 100%);
  color: white; padding: 8px 10px; font-size: 11px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 117, 140, 0.3); position: relative; z-index: 10;
}
.top-banner p { margin: 0; }

.fundo-glass {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 182, 193, 0.2); backdrop-filter: blur(15px); z-index: -1;
}

.cabecalho {
  margin: 40px auto 30px auto; max-width: 400px; padding: 20px 15px;
  font-family: 'Great Vibes', cursive; font-size: 34px; color: white;
  border-radius: 25px; background: rgba(255, 182, 193, 0.4);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.5); box-shadow: 0 8px 30px rgba(255, 150, 180, 0.3);
}

.text p { font-family: 'Great Vibes', cursive; font-size: 30px; color: #b84d6d; margin: 10px 0; }
.text-subtitulo p { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #5a3a3a; line-height: 1.6; font-weight: 500; margin: 10px 0; }

.marquee-wrapper { width: 100%; overflow: hidden; display: flex; flex-direction: column; gap: 15px; margin-top: 25px; padding: 10px 0; }
.marquee-track { display: flex; width: max-content; }
.marquee-content { display: flex; gap: 15px; padding-right: 15px; }
.scroll-left { animation: scrollLeftAnim 30s linear infinite; }
.scroll-right { animation: scrollRightAnim 30s linear infinite; }

@keyframes scrollLeftAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollRightAnim { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.card-marquee {
  width: 270px; flex-shrink: 0; display: flex; align-items: center; gap: 12px; padding: 15px;
  border-radius: 20px; background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 10px 20px rgba(255, 150, 180, 0.15);
}
.card-marquee img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 3px 3px 6px rgba(0,0,0,0.1), -3px -3px 6px rgba(255,255,255,0.7); flex-shrink: 0; }
.estrelas { font-size: 10px; margin: 0 0 5px 0; text-align: left; }
.texto-avaliacao { font-family: 'Montserrat', sans-serif; font-size: 11px; color: #5a3a3a; text-align: left; line-height: 1.4; margin: 0; font-style: italic; }

.card-exemplo { background: rgba(255, 255, 255, 0.5); border-radius: 15px; padding: 15px; margin-top: 20px; border: 1px dashed rgba(255, 182, 193, 0.8); }
.nomes-exemplo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: #5a3a3a; margin: 0 0 5px 0; }
.tempo-exemplo { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #b84d6d; margin: 0; }

.passos-grid { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.passo-item { background: rgba(255, 255, 255, 0.4); border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 15px; padding: 15px; display: flex; flex-direction: column; align-items: center; box-shadow: 0 5px 15px rgba(255, 150, 180, 0.15); }
.passo-icone { font-size: 28px; margin-bottom: 5px; }
.passo-titulo { font-family: 'Poppins', sans-serif; font-weight: 700; color: #b84d6d; font-size: 14px; margin: 0 0 5px 0; }
.passo-texto { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #5a3a3a; margin: 0; }

.input-group { margin-top: 25px; display: flex; flex-direction: column; align-items: center; }
.label-input { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: #7a2d2d; margin-bottom: 8px; }
input { width: 100%; padding: 15px; border-radius: 25px; border: 1px solid rgba(255,255,255,0.6); text-align: center; font-family: 'Montserrat', sans-serif; font-size: 15px; color: #5a3a3a; background: rgba(255, 255, 255, 0.6); box-shadow: inset 4px 4px 8px rgba(0,0,0,0.05), inset -4px -4px 8px rgba(255,255,255,0.8); transition: all 0.3s ease; }
input[type="date"] { display: flex; align-items: center; justify-content: center; text-align: center; }
input[type="date"]::-webkit-datetime-edit { display: flex; justify-content: center; text-align: center; width: 100%; }
input[type="date"]::-webkit-calendar-picker-indicator { margin-left: -15px; }
input:focus { outline: none; background: #ffffff; border: 1px solid #ff9a9e; box-shadow: 0 0 10px rgba(255, 154, 158, 0.3); }

.upload-group { margin-top: 30px; display: flex; flex-direction: column; align-items: center; }
.btn-foto { display: inline-block; width: 100%; padding: 15px; border-radius: 30px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: #b84d6d; background: rgba(255, 255, 255, 0.8); border: 2px dashed #ff9a9e; cursor: pointer; transition: 0.3s; }
.btn-foto:hover { background: #fff; transform: scale(1.02); }
.feedback-fotos { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; margin-top: 8px; color: #7a2d2d; }

/* ------------------------------------- */
/* NOVOS ESTILOS PARA OS PLANOS DE PREÇO */
/* ------------------------------------- */
.planos-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.plano-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  position: relative;
}

.plano-card.basico {
  border: 1px solid rgba(255, 182, 193, 0.8);
  box-shadow: 0 5px 15px rgba(255, 150, 180, 0.1);
}

.plano-card.premium {
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 220, 0.9));
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  transform: scale(1.02); /* Fica um pouquinho maior para dar destaque */
}

.tag-recomendado {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plano-titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #b84d6d;
  margin: 0;
}

.plano-preco {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #5a3a3a;
  margin: 5px 0 15px 0;
}

.plano-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.plano-lista li {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #5a3a3a;
  margin-bottom: 10px;
  line-height: 1.5;
}

.premium-lista li {
  border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
  padding-bottom: 8px;
}
.premium-lista li:last-child { border-bottom: none; }

.btn-plano {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.basico-btn {
  background: transparent;
  border: 2px solid #b84d6d;
  color: #b84d6d;
}

.premium-btn {
  background: linear-gradient(90deg, #d4af37, #f3e5ab, #d4af37);
  background-size: 200% auto;
  color: #5a3a3a;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  animation: shine 3s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }

.btn-plano:hover { transform: translateY(-3px) scale(1.02); }
/* ------------------------------------- */

.selo-privacidade { padding: 10px 20px; background: rgba(255, 255, 255, 0.4); border-radius: 10px; border: 1px dashed rgba(255, 182, 193, 0.8); }
.selo-privacidade p { font-family: 'Montserrat', sans-serif; font-size: 10px; color: #7a2d2d; margin: 0; line-height: 1.4; }

.faq-box { background: rgba(255, 255, 255, 0.5); border-radius: 15px; padding: 20px; text-align: left; border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: 0 5px 15px rgba(255, 150, 180, 0.1); }
.faq-pergunta { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; color: #b84d6d; margin: 15px 0 5px 0; }
.faq-pergunta:first-child { margin-top: 0; }
.faq-resposta { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #5a3a3a; margin: 0; line-height: 1.5; }

.final { padding: 15px; border-radius: 20px 20px 0 0; background: rgba(255, 182, 193, 0.4); backdrop-filter: blur(10px); color: white; }
.imglogo { width: 40px; height: 40px; margin: -30px auto 5px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.ativo { opacity: 1; transform: translateY(0); }