:root {
  --vinho: #800020;
  --bege: #f8f0e3;
  --branco: #ffffff;
}
/* COMPATIBILIDADE ENTRE dark e dark-mode (correção geral) */
.dark-mode,
.dark-mode *,
body.dark,
body.dark * {
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--bege) 0%, #ffffff 50%, var(--bege) 100%);
  min-height: 100vh;
}
/* Bolinhas pulsantes no fundo */
.background-balls {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

/* Estilo das bolhas */
.background-balls span {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(128, 0, 32, 0.25); /* vinho transparente */
  border-radius: 50%;
  animation: floatBall 6s infinite ease-in-out;
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease;
}

/* Dark mode adapta as cores das bolhas */
.dark .background-balls span {
  background: rgba(255, 228, 196, 0.3); /* bege suave */
}

/* Zoom na bolha quando mouse está próximo */
.background-balls span.active {
  transform: scale(1.6);
}



.background-balls span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.background-balls span:nth-child(2) { top: 60%; left: 80%; animation-delay: .8s; }
.background-balls span:nth-child(3) { top: 40%; left: 50%; animation-delay: 1.4s; }
.background-balls span:nth-child(4) { top: 75%; left: 20%; animation-delay: 2s; }
.background-balls span:nth-child(5) { top: 25%; left: 75%; animation-delay: 2.4s; }

/* animação flutuante natural */
@keyframes floatBall {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0px); }
}



/* Dark Mode Balls */
body.dark .background-balls span {
background: var(--bege);
opacity: 0.18;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 16px 40px;
  background: rgba(248, 240, 227, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--vinho);
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(128, 0, 32, 0.2);
  z-index: 1000;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.navbar a {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  color: var(--vinho);
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
  padding: 6px 0;
}

/* barra de energia esportiva */
.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--vinho);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.navbar a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar a:hover {
  opacity: 0.7;
}

.content {
  padding-top: 100px;
  text-align: center;
}

/* Footer moderno */
.footer {
  background: var(--vinho);
  color: var(--branco);
  text-align: center;
  padding: 40px 20px;
  margin-top: 120px;
}

.footer p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer a {
  color: var(--bege);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
}



 
/* Efeito batimento cardíaco no título */
.titulo-principal {
font-family: "Poppins", sans-serif;
font-size: 48px;
font-weight: 800;
letter-spacing: 3px;
color: var(--vinho);
text-transform: uppercase;
margin-top: 120px;
text-align: center;
animation: heartbeat 1.8s ease-in-out infinite;
}


@keyframes heartbeat {
0% { transform: scale(1); }
15% { transform: scale(1.15); }
30% { transform: scale(1); }
45% { transform: scale(1.1); }
60% { transform: scale(1); }
100% { transform: scale(1); }
}
.navbar.shrink {
  padding: 8px 32px;
  border-radius: 40px;
  box-shadow: 0 3px 18px rgba(128, 0, 32, 0.25);
  transform: translateX(-50%) scale(0.96);
}
.hero {
  width: 100%;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-content {
  
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: var(--vinho);
  color: var(--branco);
  font-weight: 600;
  font-size: 18px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.25);
}

.cta-btn:hover {
  background: #9a1238;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(128, 0, 32, 0.35);
}
.logo {
  height: 40px;
  width: auto;
  margin-right: 20px;
  display: block;
}
.sobre {
  width: 100%;
  max-width: 900px;
  margin: 120px auto;
  padding: 40px 20px;
  text-align: center;
}

.sobre h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--vinho);
  margin-bottom: 20px;
}

.sobre p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
} 
/* Contato */
.contato {
  max-width: 700px;
  margin: 120px auto;
  padding: 40px 20px;
  text-align: center;
}

.contato h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--vinho);
  margin-bottom: 10px;
}

.contato-sub {
  color: #444;
  margin-bottom: 30px;
}

#form-contato {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#form-contato input,
#form-contato textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--vinho);
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  font-size: 16px;
}

#form-contato textarea {
  height: 120px;
  resize: none;
}

#status-msg {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* Responsivo */
@media(max-width: 768px) {
  .contato h2 { font-size: 26px; }
  .btn-send { font-size: 16px; padding: 10px; }
}

/* Botão */
.btn-enviar {
  background: var(--vinho);
  color: var(--branco);
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.25);
}

.btn-enviar:hover {
  background: #9a1238;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.35);
}
/* 🌙 Modo Escuro — Botão de Envio */
body.dark .btn-send {
  background: var(--bege) !important;
  color: var(--vinho) !important;
  border: 2px solid var(--bege) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25) !important;
}

/* Hover no modo escuro */
body.dark .btn-send:hover {
  background: var(--vinho) !important;
  color: var(--bege) !important;
  border-color: var(--vinho) !important;
  box-shadow: 0 10px 26px rgba(255,255,255,0.35) !important;
  transform: translateY(-3px);
}


.btn-flutuante {
position: fixed;
bottom: 24px;
left: 24px;
width: 60px;
height: 60px;
background: var(--vinho);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 6px 20px rgba(128, 0, 32, 0.25);
transition: 0.3s ease;
z-index: 2000;
}

.btn-flutuante:hover {
transform: translateY(-4px) scale(1.08);
box-shadow: 0 10px 28px rgba(128, 0, 32, 0.35);
background: #9a1238;
} 

.whats-icon {
width: 32px;
height: 32px;
filter: brightness(100%) contrast(100%);
}
/* Depoimentos */
.depoimentos {
  max-width: 1000px;
  margin: 120px auto;
  padding: 40px 20px;
  text-align: center;
}

.depoimentos h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--vinho);
  margin-bottom: 40px;
}

/* CONTAINER DO CARROSSEL */
.cards-depoimento {
  display: flex;
  overflow: hidden;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

/* LINHA DESLIZANTE */
.cards-slide {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease-in-out;
  white-space: nowrap;
}

/* CARD */
.card {
  background: var(--bege);
  border-left: 5px solid var(--vinho);
  padding: 25px 20px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 6px 25px rgba(128, 0, 32, 0.10);
  transition: 0.3s ease;
  font-size: 16px;
  color: #333;
  display: inline-block;
  white-space: normal;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.18);
}

.card span {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--vinho);
}

/* Dark Mode Cards */
.dark .card {
  background: var(--dark-card);
  color: var(--branco);
  border-left: 5px solid var(--branco);
  box-shadow: 0 6px 25px rgba(255,255,255,0.10);
}

.dark .card span {
  color: var(--branco);
}

/* Botão depoimento */
.btn-depoimento {
  background: var(--vinho);
  color: var(--branco);
  padding: 12px 28px;
  border-radius: 40px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(128,0,32,0.25);
}

.btn-depoimento:hover {
  background: #9a1238;
  transform: translateY(-4px);
}

/* Dark Mode Botão */
.dark .btn-depoimento {
  background: var(--branco);
  color: var(--vinho);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

.dark .btn-depoimento:hover {
  background: #d8d8d8;
}


/* Modal com animação */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 3000;
  transition: opacity 0.35s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bege);
  border-left: 6px solid var(--vinho);
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(128,0,32,0.25);
  animation: modalUp 0.4s ease forwards;
}

@keyframes modalUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.form-depoimento input,
.form-depoimento textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--vinho);
  border-radius: 8px;
  margin-bottom: 12px;
  outline: none;
  font-family: inherit;
}

.btn-send {
  background: var(--vinho);
  color: var(--branco);
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-send:hover {
  background: #9a1238;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
  color: var(--vinho);
  font-weight: bold;
}
/* Carrossel de Depoimentos */
.depoimentos-slider {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

.depo-slide {
  min-width: 100%;
  text-align: center;
  transition: 0.5s ease;
  background: var(--bege);
  padding: 25px;
  border-left: 5px solid var(--vinho);
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(128, 0, 32, 0.10);
}

.slider-controls {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.slider-btn {
  width: 12px;
  height: 12px;
  background: var(--vinho);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.3s;
}

.slider-btn.active {
  opacity: 1;
}
/* Missão, Visão, Valores */
.mvv {
  max-width: 1100px;
  margin: 120px auto;
  padding: 40px 20px;
  text-align: center;
}

.mvv h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--vinho);
  margin-bottom: 40px;
}

.mvv-cards {
   display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;                 /* Espaço entre os cards */
  flex-wrap: nowrap;         /* Mantém uma única linha */
  margin: 40px auto;
  overflow-x: auto;          /* Caso a tela seja pequena, pode rolar */
  padding: 10px;
}

.mvv-card {
  background: var(--bege);
  border-left: 5px solid var(--vinho);
  width: 300px;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(128, 0, 32, 0.1);
  transition: 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.18);
}

.mvv-icon {
  font-size: 38px;
  margin-bottom: 10px;
}

.mvv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--vinho);
  margin-bottom: 10px;
}

.mvv-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Responsivo */
@media(max-width: 768px) {
  .mvv-card {
    width: 100%;
  }
}
/* Apoio ao Atleta */
.apoio {
  max-width: 1100px;
  margin: 120px auto;
  padding: 40px 20px;
  text-align: center;
}

.apoio h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--vinho);
  margin-bottom: 20px;
}

.apoio-subtext {
  font-size: 18px;
  color: #444;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.apoio-etapas {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.apoio-card {
  background: var(--bege);
border-left: 5px solid var(--vinho);
padding: 25px 20px;
border-radius: 12px;
box-shadow: 0 6px 25px rgba(128, 0, 32, 0.1);
transition: 0.3s ease;

/* 🟢 NOVOS AJUSTES PARA QUADRADO 2x2 */
width: 100%;             /* ocupa o espaço do grid */
max-width: 360px;         /* limite para não esticar demais */
margin: 0 auto;           /* centraliza dentro da célula */

}

.apoio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.18);
}

.apoio-icon {
  font-size: 38px;
  margin-bottom: 10px;
}

.apoio-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--vinho);
  margin-bottom: 8px;
}

.apoio-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .apoio-card {
    width: 100%;
  }
}
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

.popup.show {
  display: flex;
  animation: fade .3s ease;
}

.popup-content {
  background: var(--bege);
  padding: 30px;
  border-radius: 12px;
  border-left: 6px solid var(--vinho);
  box-shadow: 0 10px 30px rgba(128,0,32,0.25);
  text-align: center;
}

.popup-btn {
  margin-top: 12px;
  background: var(--vinho);
  border: none;
  color: var(--branco);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}
@keyframes fade {from {opacity:0;} to {opacity:1;}}


/* Ícones globais */
.icon {
  width: 32px;
  height: 32px;
}

/* Botão Instagram */
.insta-btn {
  bottom: 92px; /* acima do whatsapp */
}

/* Botão E-mail */
.email-btn {
  bottom: 160px; /* acima do instagram */
}

/* Ajuste responsivo */
@media (max-width: 768px) {
  .insta-btn { bottom: 80px; }
  .email-btn { bottom: 140px; }

  .icon {
    width: 26px;
    height: 26px;
  }
}
/* Botão modo escuro no topo direito */
.dark-toggle {
position: fixed;
top: 20px;
right: 20px;
background: var(--vinho);
color: var(--branco);
border: none;
padding: 10px 14px;
font-size: 18px;
font-weight: 600;
border-radius: 50%;
cursor: pointer;
z-index: 2000;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
transition: 0.3s ease;
}
.dark-toggle:hover {
transform: scale(1.1);
background: #9a1238;
}
.dark-toggle:hover {
transform: scale(1.05);
background: #9a1238;
}


/* Tema escuro */
body.dark {
background: #111;
color: #eee;
}
body.dark p,
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark a,
body.dark span,
body.dark li,
body.dark label,
body.dark button,
body.dark input,
body.dark textarea {
color: var(--bege) !important;
}
body.dark .navbar {
background: rgba(20, 20, 20, 0.85);
border-color: var(--bege);
}
body.dark .navbar a {
color: var(--bege);
}
body.dark .footer {
background: #000;
color: var(--bege);
}
body.dark .btn-flutuante {
background: #000;
}
body.dark.btn-flutuante:hover {
background: #222;
}
body.dark .mvv-card,
body.dark .apoio-card,
body.dark .depo-slide {
background: #222;
border-color: var(--bege);
color: #fff;
}
/* Team Cards Dark */
body.dark .team-card {
background: #1b1b1b;
border-left: 5px solid var(--bege);
box-shadow: 0 6px 18px rgba(255, 255, 255, 0.12);
}
body.dark .team-card h3 {
color: var(--bege);
}
body.dark .team-card p {
color: var(--bege) !important;
}
body.dark .team-img {
border-color: var(--bege);
}

.team-section {
max-width: 1100px;
margin: 120px auto 60px;
padding: 40px 20px;
text-align: center;
}
.team-section h2 {
font-size: 32px;
font-weight: 800;
color: var(--vinho);
margin-bottom: 40px;
}
.team-cards {
display: flex;
flex-wrap: nowrap;
justify-content: center;
gap: 30px;
overflow-x: auto;
padding-bottom: 10px;
}
.team-card {
background: var(--bege);
border-left: 5px solid var(--vinho);
width: 300px;
flex: 0 0 300px;
padding: 20px;
border-radius: 12px;
box-shadow: 0 6px 25px rgba(128, 0, 32, 0.1);
transition: 0.3s ease;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.team-card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 30px rgba(128, 0, 32, 0.18);
}
.team-img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
border: 3px solid var(--vinho);
margin-bottom: 15px;
}
.team-card h3 {
font-size: 20px;
font-weight: 700;
color: var(--vinho);
margin-bottom: 8px;
}
.team-card p {
color: #333;
font-size: 15px;
line-height: 1.4;
}
    /* Seção Vôlei RGS */
.volei-section {
max-width: 1200px;
margin: 120px auto;
padding: 40px 20px;
text-align: center;
}
.volei-section h2 {
font-size: 36px;
font-weight: 800;
color: var(--vinho);
margin-bottom: 30px;
}
/* Botão conhecer projeto */
.volei-btn {
display: inline-block;
margin-top: 10px;
margin-bottom: 40px;
padding: 12px 26px;
background: var(--vinho);
color: var(--branco);
font-weight: 600;
font-size: 16px;
border-radius: 30px;
text-decoration: none;
transition: 0.3s ease;
box-shadow: 0 4px 14px rgba(128,0,32,0.25);
}
.volei-btn:hover {
background: #9a1238;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(128,0,32,0.35);
}
body.dark .volei-btn {
background: var(--bege);
color: var(--vinho) !important;
box-shadow: 0 4px 14px rgba(255,255,255,0.2);
}
body.dark .volei-btn:hover {
background: #e7d7b8;
}
}
.volei-text {
max-width: 850px;
margin: 0 auto 40px;
font-size: 18px;
line-height: 1.6;
color: #333;
}
.volei-gallery {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.volei-img {
width: 350px;
height: 260px;
object-fit: cover;
border-radius: 14px;
box-shadow: 0 6px 22px rgba(128, 0, 32, 0.18);
transition: 0.3s ease;
}
.volei-img:hover {
transform: scale(1.04);
box-shadow: 0 10px 28px rgba(128, 0, 32, 0.28);
}
/* Seção EC Santo André */
.ecsa-section {
max-width: 1200px;
margin: 120px auto;
padding: 40px 20px;
text-align: center;
}
.ecsa-section h2 {
font-size: 36px;
font-weight: 800;
color: var(--vinho);
margin-bottom: 30px;
}
.ecsa-text {
max-width: 850px;
margin: 0 auto 40px;
font-size: 18px;
line-height: 1.6;
color: #333;
}
.ecsa-gallery {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.ecsa-img {
width: 350px;
height: 260px;
object-fit: cover;
border-radius: 14px;
box-shadow: 0 6px 22px rgba(128, 0, 32, 0.18);
transition: 0.3s ease;
}
.ecsa-img:hover {
transform: scale(1.04);
box-shadow: 0 10px 28px rgba(128, 0, 32, 0.28);
}
body.dark .ecsa-text { color: var(--bege); }
body.dark .ecsa-img { box-shadow: 0 6px 22px rgba(255,255,255,0.15); }
body.dark .ecsa-img:hover { box-shadow: 0 10px 28px rgba(255,255,255,0.28); }


/* Botão conhecer EC Santo André */
.ecsa-btn {
display: inline-block;
margin-top: 10px;
margin-bottom: 40px;
padding: 12px 26px;
background: var(--vinho);
color: var(--branco);
font-weight: 600;
font-size: 16px;
border-radius: 30px;
text-decoration: none;
transition: 0.3s ease;
box-shadow: 0 4px 14px rgba(128,0,32,0.25);
}
.ecsa-btn:hover {
background: #9a1238;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(128,0,32,0.35);
}
body.dark .ecsa-btn {
background: var(--bege);
color: var(--vinho) !important;
box-shadow: 0 4px 14px rgba(255,255,255,0.2);
}
body.dark .ecsa-btn:hover {
background: #e7d7b8;
}
.mascote-footer {
position: fixed;
bottom: 0;
right: 20px;
width: 140px;
height: auto;
z-index: 500;
animation: wave 2.4s ease-in-out infinite;
pointer-events: none;
opacity: 0.92;
}


@keyframes wave {
0% { transform: rotate(0deg) translateY(0px); }
20% { transform: rotate(4deg) translateY(-4px); }
40% { transform: rotate(-4deg) translateY(0px); }
60% { transform: rotate(4deg) translateY(-3px); }
80% { transform: rotate(-4deg) translateY(0px); }
100% { transform: rotate(0deg) translateY(0px); }
}


body.dark .mascote-footer {
opacity: 0.75;
}

.login-container {
  max-width: 360px;
  margin: 140px auto;
  background: var(--bege);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(128,0,32,0.25);
}

.login-container input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 2px solid var(--vinho);
}

.login-container button {
  background: var(--vinho);
  color: var(--branco);
  font-weight: bold;
  border: none;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
}

.login-container a {
  color: var(--vinho);
  font-weight: 600;
}
.perfil-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.perfil-card {
  background: var(--bege);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(128,0,32,0.25);
}

.perfil-foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--vinho);
  object-fit: cover;
  margin-bottom: 12px;
}

.perfil-card input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: 2px solid var(--vinho);
}

.perfil-card button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: var(--vinho);
  color: var(--branco);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bolder;
}

.logout-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #9a1238;
  color: var(--branco);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.dark .perfil-card {
  background: #2e2e2e;
  color: var(--bege);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.dark .perfil-card input {
  border-color: var(--bege);
  background: #1a1a1a;
  color: var(--bege);
}

.dark .perfil-card button {
  background: var(--bege);
  color: var(--vinho);
}

.dark .logout-btn {
  background: var(--bege);
  color: var(--vinho);
}
/* 🌙 MODO ESCURO FORÇADO PARA BOTÕES */
body.dark .cta-btn,
body.dark .btn-depoimento {
  background: var(--bege) !important;
  color: var(--vinho) !important;
  border: 2px solid var(--bege) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25) !important;
}

/* HOVER MODO ESCURO */
body.dark .cta-btn:hover,
body.dark .btn-depoimento:hover {
  background: var(--vinho) !important;
  color: var(--bege) !important;
  border-color: var(--vinho) !important;
  box-shadow: 0 10px 26px rgba(255,255,255,0.35) !important;
  transform: translateY(-3px) !important;
}
/* 🌙 DARK MODE — MODAL COMPLETO */
body.dark .modal-overlay {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(4px);
}

/* Conteúdo do modal */
body.dark .modal-content {
  background: var(--vinho) !important;
  color: var(--bege) !important;
  border: 2px solid var(--bege) !important;
  box-shadow: 0 0 20px rgba(255,255,255,0.18) !important;
}

/* Título e textos */
body.dark .modal-content h2,
body.dark .modal-content h3,
body.dark .modal-content p,
body.dark .modal-content label {
  color: var(--bege) !important;
}

/* Inputs e textareas dentro do modal */
body.dark .modal-content input,
body.dark .modal-content textarea {
  background: rgba(255, 228, 196, 0.1) !important;
  color: var(--bege) !important;
  border: 1px solid var(--bege) !important;
}

body.dark .modal-content input::placeholder,
body.dark .modal-content textarea::placeholder {
  color: rgba(255,255,255,0.6) !important;
}

/* Botão FECHAR do modal */
body.dark .modal-close {
  color: var(--bege) !important;
  background: transparent !important;
}

/* Hover no fechar */
body.dark .modal-close:hover {
  color: #ffd5b2 !important;
}

/* Botões dentro do modal já pegam estilo (btn-send, btn-depoimento, popup-btn),
   mas aqui fica seguro caso venha outro botão futuramente: */
body.dark .modal-content button {
  background: var(--bege) !important;
  color: var(--vinho) !important;
  border: 2px solid var(--bege) !important;
}
/* 📌 Alinhamento do formulário (inputs, textarea e botão) */
form .form-group,
form input,
form textarea,
form .btn-send {
  width: 100% !important;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* 📌 Ajuste do textarea */
form textarea {
  resize: vertical;
  min-height: 120px;
}
/* Garantir que TUDO no modal tenha a mesma largura e alinhamento */
.modal-content form {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Inputs, textarea e botões do modal */
.modal-content input,
.modal-content textarea,
.modal-content .btn-send {
  width: 100% !important;
  max-width: 420px !important;
  display: block;
  margin: 8px 0; /* espaçamento uniforme */
}

/* Centralizar o botão e evitar que ele fique solto */
.modal-content .btn-send {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Ajuste do textarea */
.modal-content textarea {
  resize: vertical;
  min-height: 110px;
}
/* === CARROSSEL: linha única, centralizado === */
/* Mostrar apenas 1 card centralizado */
.depo-carousel {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0;
}

.depo-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

.depo-track .card {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;     /* Corrige o texto indo pro lado contrário */
  text-align: center;
  box-sizing: border-box;
}



/* Opcional: centraliza visualmente a linha (quando container > total) */
.depo-track.centered {
  justify-content: center;
}

/* Pausa visual quando hover (feito via JS também) */
.depo-carousel:hover .depo-track {
  transition-duration: 250ms;
}

/* adaptabilidade */
@media (max-width: 720px) {
  .depo-track .card { width: calc(100vw - 80px); /* ocupa a maior parte do viewport */ }
  .depo-carousel { padding: 0 16px; }
}
/* Indicadores do carrossel */
.depo-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.depo-indicators .dot {
  width: 12px;
  height: 12px;
  background: var(--vinho);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.depo-indicators .dot.active {
  width: 28px;
  border-radius: 10px;
}

/* Dark mode */
.dark .depo-indicators .dot {
  background: var(--bege);
}





