/* =============================================
   VIDA FARMA – Estilos Principais
   ============================================= */

:root {
  --verde: #0f9d58;
  --verde-escuro: #087443;
  --verde-claro: #e8f7ef;
  --verde-medio: #c6edd8;
  --azul: #1e88e5;
  --texto: #1f2937;
  --cinza: #6b7280;
  --cinza-claro: #9ca3af;
  --branco: #ffffff;
  --fundo: #f8fafc;
  --fundo-alt: #f0f7f3;
  --borda: #dbe5df;
  --sombra: 0 10px 30px rgba(15, 157, 88, 0.12);
  --sombra-hover: 0 20px 50px rgba(15, 157, 88, 0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--texto);
  background: var(--fundo);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.highlight { color: var(--verde); }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--verde);
  color: var(--branco);
  border-color: var(--verde);
}
.btn-primary:hover {
  background: var(--verde-escuro);
  border-color: var(--verde-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,157,88,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--branco);
  transform: translateY(-2px);
}

.btn-header {
  background: var(--verde);
  color: var(--branco);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 50px;
}
.btn-header:hover {
  background: var(--verde-escuro);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--branco);
  color: var(--verde);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--verde-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ============ HEADER ============ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borda);
  padding: 0.75rem 0;
  transition: box-shadow 0.3s;
}

#header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(15,157,88,0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--verde-escuro);
  letter-spacing: -0.5px;
}

.logo-slogan {
  font-size: 0.7rem;
  color: var(--cinza);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--verde);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--verde);
  background: var(--verde-claro);
}

.nav-link:hover::after { width: 60%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ SECTION BASE ============ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--fundo-alt);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  background: var(--verde-claro);
  color: var(--verde-escuro);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--texto);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--cinza);
  font-size: 1.05rem;
}

/* ============ HERO ============ */
#hero {
  position: relative;
  background: linear-gradient(135deg, var(--verde-escuro) 0%, #0a6b3d 40%, #1b5e34 100%);
  padding: 7rem 0 5rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(15,157,88,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--branco);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
  color: #5dfea8;
  position: relative;
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  color: var(--branco);
}

.stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ============ SOBRE ============ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-medio));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--verde);
  opacity: 0.6;
  box-shadow: var(--sombra);
}

.sobre-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--branco);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--sombra);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--verde-escuro);
  border-left: 4px solid var(--verde);
}

.sobre-badge-float i {
  color: #f59e0b;
  font-size: 1.2rem;
}

.sobre-texto .section-label { margin-bottom: 0.75rem; }
.sobre-texto .section-title { text-align: left; margin-bottom: 1rem; }
.sobre-texto p { color: var(--cinza); margin-bottom: 1rem; }

.sobre-lista {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sobre-lista li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--texto);
}

.sobre-lista li i {
  color: var(--verde);
  flex-shrink: 0;
}

/* ============ SERVIÇOS ============ */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-servico {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  border: 1px solid var(--borda);
}

.card-servico:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-hover);
  border-color: var(--verde-medio);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-medio));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--verde);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.card-servico:hover .card-icon {
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  color: var(--branco);
  transform: rotate(-5deg) scale(1.1);
}

.card-servico h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 0.6rem;
}

.card-servico p {
  font-size: 0.9rem;
  color: var(--cinza);
  line-height: 1.6;
}

/* ============ DIFERENCIAIS ============ */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.diferencial-item {
  display: flex;
  gap: 1.25rem;
  background: var(--branco);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid var(--borda);
  transition: var(--transition);
}

.diferencial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
  border-color: var(--verde-medio);
}

.diferencial-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--verde-medio);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.diferencial-content h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 0.5rem;
}

.diferencial-content h3 i {
  color: var(--verde);
}

.diferencial-content p {
  font-size: 0.9rem;
  color: var(--cinza);
  line-height: 1.6;
}

/* ============ DEPOIMENTOS ============ */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.card-depoimento {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--borda);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-depoimento:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra);
}

.depoimento-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.card-depoimento blockquote {
  font-size: 0.92rem;
  color: var(--cinza);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  position: relative;
  padding-top: 0.5rem;
}

.card-depoimento blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--verde-claro);
  font-style: normal;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.autor-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depoimento-autor strong {
  display: block;
  font-size: 0.9rem;
  color: var(--texto);
}

.depoimento-autor span {
  font-size: 0.78rem;
  color: var(--cinza-claro);
}

.rating-geral {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--branco);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--borda);
  max-width: 500px;
  margin: 0 auto;
}

.rating-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--verde);
  line-height: 1;
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.1rem;
}

.rating-info span {
  font-size: 0.85rem;
  color: var(--cinza);
}

/* ============ CTA ============ */
.cta-section {
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
  color: var(--branco);
}

.cta-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ============ CONTATO ============ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato-info .section-label { margin-bottom: 0.75rem; }
.contato-info .section-title { text-align: left; margin-bottom: 1rem; }
.contato-info > p { color: var(--cinza); margin-bottom: 2rem; }

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contato-icon {
  width: 40px;
  height: 40px;
  background: var(--verde-claro);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contato-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cinza-claro);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

.contato-item span,
.contato-item a {
  font-size: 0.95rem;
  color: var(--texto);
}

.contato-item a:hover { color: var(--verde); }

.redes-sociais {
  display: flex;
  gap: 0.75rem;
}

.rede-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--verde-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  font-size: 1rem;
  transition: var(--transition);
}

.rede-link:hover {
  background: var(--verde);
  color: var(--branco);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(15,157,88,0.3);
}

.contato-mapa {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
}

.mapa-placeholder {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-medio));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--verde);
  font-size: 4rem;
}

.mapa-placeholder p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--verde-escuro);
}

/* ============ FOOTER ============ */
#footer {
  background: #0d1f16;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-name { color: var(--branco); }
.footer-brand .logo-slogan { color: rgba(255,255,255,0.5); }
.footer-brand .logo-icon { box-shadow: 0 4px 12px rgba(15,157,88,0.4); }

.footer-desc {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

#footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--branco);
  margin-bottom: 1.25rem;
}

.footer-nav ul li,
.footer-servicos ul li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-nav ul li a:hover { color: var(--verde); }
.footer-servicos ul li { display: flex; align-items: center; gap: 0.4rem; }
.footer-servicos ul li i { font-size: 0.6rem; color: var(--verde); }

.footer-contato p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contato i { color: var(--verde); width: 14px; text-align: center; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--texto);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--texto);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============ ANIMAÇÕES ============ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header mobile */
  .btn-header { display: none; }
  .hamburger { display: flex; }

  #nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--branco);
    border-bottom: 2px solid var(--borda);
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  #nav.open { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .nav-link { width: 100%; padding: 0.75rem 1rem; }

  /* Seções */
  .sobre-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  
  .sobre-visual { order: -1; }
  .sobre-badge-float { right: 0; bottom: -1rem; }

  .servicos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }

  #hero { min-height: auto; padding: 5rem 0 4rem; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  
  .rating-geral { flex-direction: column; text-align: center; gap: 0.75rem; }
}
