:root {
  --bg: #f9f7fc;
  --primary: #a359db;
  --accent: #7B4B9F;
  --accent-2: #9B6BAE;
  --green: #4CAF50;
  --muted: #666;
  --card-bg: #faf8fd;
  --radius: 12px;
  --container: 1200px;
  --shadow: 0 18px 50px rgba(91, 46, 125, 0.07);
  --shadow-hover: 0 28px 60px rgba(91, 46, 125, 0.15);
  --glass: rgba(255, 255, 255, 0.85);
  --gradient-1: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-2: linear-gradient(135deg, #f0e8f6, #ffffff);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: #222;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 100;
}

.skip-link:focus {
  left: 10px;
}

/* --- Loader, Headers e Navegação --- */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(91, 46, 125, 0.95), rgba(91, 46, 125, 0.88));
  color: #fff;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  padding: 32px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  max-width: 320px;
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.98); opacity: 0.9; }
  100% { transform: scale(1.02); opacity: 1; }
}

.site-header {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(91, 46, 125, 0.06);
  position: sticky;
  top: 0;
  z-index: 60;
  transition: var(--transition);
}

.site-header.shrink {
  padding: 0;
  box-shadow: 0 10px 30px rgba(91, 46, 125, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  transition: var(--transition);
}

.site-header.shrink .header-inner {
  padding: 8px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(91, 46, 125, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 16px;
  font-weight: 800;
}

.logo-location {
  font-size: 10px;
  font-weight: 600;
  opacity: .6;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  margin: 0 14px;
  color: #444;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.btn-header {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(163, 89, 251, 0.2);
  transition: var(--transition);
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(163, 89, 251, 0.35);
  background: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  color: var(--primary);
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  background: var(--gradient-1);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -10%;
  right: -5%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-location {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  margin: 0 0 24px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description {
  font-size: 17px;
  line-height: 1.8;
  opacity: .95;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 440px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.02) translateY(-5px);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #fff;
  color: #222;
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.badge-icon {
  color: var(--primary);
  font-size: 24px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 1px;
}

.badge-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(76, 175, 80, 0.45);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-green {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.25);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(76, 175, 80, 0.4);
}

.btn:active {
  transform: translateY(-1px);
}

/* --- Cards de Serviços --- */
.services {
  padding: 90px 0 60px;
}

.services h2 {
  text-align: center;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: left;
  border: 1px solid rgba(91, 46, 125, 0.02);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(163, 89, 219, 0.08);
  color: var(--primary);
  font-size: 30px;
  transition: var(--transition);
}

.card:hover .icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.card h3 {
  color: var(--accent);
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

/* --- Seção Kelly --- */
.kelly-section {
  padding: 100px 0;
  background: var(--gradient-2);
}

.kelly-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.kelly-image {
  position: relative;
}

.kelly-photo {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

.kelly-image:hover .kelly-photo {
  transform: scale(1.01);
}

.kelly-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--accent);
  margin: 16px 0 24px;
  line-height: 1.2;
}

.kelly-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
}

.kelly-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.kelly-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(91, 46, 125, 0.03);
  border: 1px solid rgba(91, 46, 125, 0.05);
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: var(--transition);
}

.kelly-badge:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(91, 46, 125, 0.08);
}

.badge-icon-small {
  font-size: 18px;
}

/* --- Seção Diferenciais --- */
.differentials {
  padding: 100px 0;
  background: #fff;
}

.differentials h2 {
  text-align: center;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 12px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.condition-card {
  background: var(--bg);
  padding: 40px 30px;
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.01);
}

.condition-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-hover);
}

.condition-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(91, 46, 125, 0.06);
  transition: var(--transition);
}

.condition-card:hover .condition-icon {
  background: var(--gradient-1);
  color: #fff;
}

.condition-card h3 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
}

.condition-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Seção FAQ --- */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}

.faq-section h2 {
  text-align: center;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 12px;
}

.faq-accordion {
  max-width: 860px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(91, 46, 125, 0.02);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(91, 46, 125, 0.03);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(91, 46, 125, 0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 30px;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Inter, sans-serif;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
  border-color: rgba(163, 89, 219, 0.2);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  padding: 0 30px 30px;
  max-height: 600px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* --- Mídias Sociais e Mapa --- */
.location-social {
  padding: 80px 0 0;
  background: #fff;
}

.social-links-large {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 0 0 50px;
}

.social-icon-large {
  display: inline-flex;
  transition: var(--transition);
}

.social-icon-large:hover {
  transform: translateY(-6px) scale(1.1);
}

.map-container {
  width: 100%;
  line-height: 0;
  filter: grayscale(0.2);
  transition: var(--transition);
}

.map-container:hover {
  filter: grayscale(0);
}

/* --- CTA Final --- */
.cta-final {
  padding: 80px 0;
  background: var(--gradient-1);
  color: #fff;
  text-align: center;
  position: relative;
}

.cta-final-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin: 0 0 20px;
  line-height: 1.2;
}

.cta-final p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.btn-white-text {
  background: #fff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.btn-white-text:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 12px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* --- Utilitários (Animação ao rolar) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Feedbacks / Avaliações --- */
.page-content {
  padding: 70px 0 100px;
}

.feedback-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}

.feedback-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1.15;
  color: var(--accent);
  margin: 12px 0 18px;
}

.feedback-hero .eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(163, 89, 219, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feedback-hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 700px;
}

.feedback-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feedback-stats > div {
  background: #fff;
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(163, 89, 219, 0.04);
  transition: var(--transition);
}

.feedback-stats > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Container do número e símbolo */
.feedback-stats strong {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: var(--primary);
}

/* O texto descritivo embaixo do número (ex: Clientes satisfeitos) */
.feedback-stats > div > span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

/* Garante que o contador animado fique na mesma linha que o símbolo */
.feedback-stats strong span.counter {
  display: inline;
  margin-top: 0;
}

.feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.feedback-card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(163, 89, 219, 0.05);
  transition: var(--transition);
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feedback-meta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feedback-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--green));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(163, 89, 219, 0.2);
}

.feedback-meta h2 {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--accent);
}

.feedback-meta p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.feedback-rating {
  margin-left: auto;
  color: #f5b700;
  font-size: 16px;
  letter-spacing: 2px;
}

.feedback-card > p {
  margin: 0;
  color: #444;
  line-height: 1.7;
  font-size: 15px;
}

.feedback-cta {
  margin-top: 60px;
}

.cta-card {
  background: var(--gradient-1);
  color: #fff;
  border-radius: 32px;
  padding: 50px 40px;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.cta-card h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
}

.cta-card p {
  margin: 0 auto 28px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

.cta-card .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cta-card .btn-primary:hover {
  background: #fbf9ff;
  color: var(--primary);
}

/* --- Responsividade Ajustada --- */
@media (max-width: 1100px) {
  .cards, .diff-grid, .feedbacks-grid { grid-template-columns: repeat(2, 1fr); }
  .kelly-content, .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .kelly-image { order: 2; }
  .kelly-text { order: 1; }
  .hero { text-align: center; padding: 60px 0; }
  .hero-actions { justify-content: center; }
  .hero-badge { left: 20px; }
}

@media (max-width: 768px) {
  .cards, .diff-grid, .kelly-badges, .feedback-stats, .feedbacks-grid { grid-template-columns: 1fr; }
  
  /* Menu Mobile Integrado com Transição */
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--bg);
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .main-nav a {
    margin: 12px 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  
  .nav-toggle { display: block; }
  .btn-header { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-actions, .cta-final-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn, .cta-final-actions .btn-white-text, .cta-final-actions .btn-outline-white { width: 100%; text-align: center; }
  .faq-question { font-size: 16px; padding: 20px; }
  .faq-item.active .faq-answer { padding: 0 20px 20px; }
  .feedback-hero { grid-template-columns: 1fr; }
  .feedback-meta { align-items: center; }
  .feedback-rating { margin-left: 0; width: 100%; margin-top: 10px; }
  .cta-card { padding: 36px 20px; }
}
/* Efeito de Brilho nos Botões Principais */
.btn-primary, .btn-green, .btn-white-text, .btn-header {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .btn-green::after, .btn-white-text::after, .btn-header::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shimmerEffect 4s infinite;
}

@keyframes shimmerEffect {
  0% { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}
/* Preparação para o efeito Tilt nos Cards */
.card, .condition-card, .feedback-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
/* Estilo para o Logótipo dentro do Loader */
.loader-logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(163, 89, 219, 0.3);
  animation: pulseLogo 2s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animação de pulsação e brilho sutil para o logótipo */
@keyframes pulseLogo {
  0% {
    transform: scale(0.95);
    box-shadow: 0 8px 20px rgba(163, 89, 219, 0.2);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(163, 89, 219, 0.5);
  }
}