/* ==============================
   Cuidare - Tema Padrão SPA
   ============================== */

:root {
  --roxo: #5c2d91;
  --dourado: #C7A76C;
  --bg: #fdf8f9;
  --cinza: #555;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg) url('bg-texture.jpg') no-repeat center/cover fixed;
  color: var(--cinza);
  overflow-x: hidden;
}

/* Banner superior */
.demo-banner {
  background: linear-gradient(90deg, var(--roxo), var(--dourado));
  color: #fff;
  text-align: center;
  padding: 10px 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.demo-banner span {
  display: block;
  font-size: 13px;
  opacity: 0.9;
}

/* Cabeçalho */
.demo-header {
  text-align: center;
  padding: 60px 20px 30px;
  animation: fadeIn 1s ease;
}
.demo-header .logo {
  width: 140px;
  margin-bottom: 15px;
}
.demo-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--roxo);
  margin-bottom: 10px;
}
.demo-header p {
  font-size: 17px;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
}

/* Cards */
.options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  padding: 0 20px 60px;
  animation: fadeInUp 1s ease;
}
.card {
  background: #fff;
  width: 340px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--roxo);
  margin: 20px 0 8px;
}
.card p {
  font-size: 15px;
  color: #666;
  padding: 0 25px;
  line-height: 1.5;
  min-height: 60px;
}
.card a {
  display: inline-block;
  margin: 20px 0 30px;
  padding: 11px 26px;
  background: linear-gradient(90deg, var(--roxo), var(--dourado));
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.card a:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Seção de CTA */
.cta-section {
  text-align: center;
  padding: 50px 20px 80px;
  background: linear-gradient(180deg, rgba(92,45,145,0.05), rgba(255,255,255,1));
  animation: fadeInUp 1.2s ease;
}
.cta-section h3 {
  font-family: 'Playfair Display', serif;
  color: var(--roxo);
  font-size: 26px;
  margin-bottom: 10px;
}
.cta-section p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}
.cta-section a {
  background: linear-gradient(90deg, var(--roxo), var(--dourado));
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 30px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cta-section a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Rodapé */
footer {
  background: var(--roxo);
  color: #fff;
  text-align: center;
  padding: 25px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
  .demo-header h1 { font-size: 28px; }
  .card { width: 90%; }
  .cta-section h3 { font-size: 22px; }
}
