/* ===== VARIÁVEIS E ALINHAMENTO COM STYLE.CSS ===== */
:root {
  --roxo: #6a11cb;
  --roxo-dark: #4a0b8c;
  --roxo-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --azul: #00c9a7;
  --azul-dark: #00b894;
  --cinza: #5d5d5d;
  --cinza-claro: #f8f9fa;
  --branco: #ffffff;
  --transicao: all 0.3s ease;
  --sombra: 0 5px 20px rgba(106, 17, 203, 0.2);
}

/* ===== BACKGROUNDS ===== */
.bg-roxo {
  background: var(--roxo-gradient) !important;
}

.bg-gray {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

/* ===== TOPO/HERO ===== */
.topo {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.95) 0%, rgba(37, 117, 252, 0.95) 100%),
              url('../img/banner.png') center/cover;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--branco);
}

.topo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
}

/* ===== DIVISORES ===== */
.divisor-white,
.divisor-roxo {
  width: 80px;
  height: 4px;
  margin: 25px auto;
  border: none;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.divisor-white {
  background: var(--branco);
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.divisor-roxo {
  background: var(--roxo);
}

.divisor-white::before,
.divisor-roxo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  100% { left: 100%; }
}

/* ===== CORES DE TEXTO ===== */
.text-color1 {
  color: var(--roxo) !important;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.text-color1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--roxo);
  border-radius: 3px;
}

/* ===== CARD SUBTITLE ===== */
.card-subtitle {
  min-height: 35px;
  color: var(--cinza);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ===== NÚMEROS CIRCULARES ===== */
.circle-number {
  background: var(--roxo-gradient);
  width: 80px;
  height: 80px;
  line-height: 80px;
  color: var(--branco);
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--sombra);
  transition: var(--transicao);
  position: relative;
  z-index: 1;
}

.circle-number::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: inherit;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  animation: pulse 2s infinite;
}

.circle-number:hover {
  transform: scale(1.1) rotate(10deg);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ===== MÉTODOS DE PAGAMENTO ===== */
.metodo {
  display: inline-block;
  border: 2px solid transparent;
  background: linear-gradient(var(--branco), var(--branco)) padding-box,
              var(--roxo-gradient) border-box;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--roxo);
  margin: 5px;
  transition: var(--transicao);
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.metodo:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra);
  color: var(--roxo);
  background: linear-gradient(var(--branco), var(--branco)) padding-box,
              var(--roxo-gradient) border-box;
}

.metodo i {
  color: var(--azul);
  margin-right: 8px;
  transition: var(--transicao);
}

.metodo:hover i {
  transform: scale(1.2);
  color: var(--roxo);
}

/* ===== SLIDER/CARROSSEL ===== */
#slider {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

#slider .carousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

#slider .carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}

#slider .carousel-indicators li {
  border: 2px solid var(--roxo);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 0.5;
  transition: var(--transicao);
  background: transparent;
}

#slider .carousel-indicators li.active {
  background: var(--roxo);
  opacity: 1;
  transform: scale(1.3);
}

#slider .carousel-inner {
  border-radius: 20px;
}

#slider .carousel-item {
  padding: 40px;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: var(--branco);
}

#slider p {
  min-height: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

/* ===== ASPAS ===== */
.aspas {
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
}

.aspas-right {
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-family: Georgia, serif;
  transform: rotate(180deg);
}

/* ===== MENU ===== */
#menu {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#menu .nav-link {
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 10px 20px !important;
  margin: 0 5px;
  border-radius: 50px;
  transition: var(--transicao);
  position: relative;
}

#menu .nav-link:hover {
  color: var(--branco);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

#menu .nav-link.active {
  background: var(--roxo-gradient);
  color: var(--branco);
  border-bottom: none;
  box-shadow: var(--sombra);
}

#menu .nav-link.active::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--branco);
  border-radius: 50%;
}

/* ===== MODAL ===== */
#videoModal .modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--roxo-dark), var(--roxo));
}

#videoModal .modal-body {
  padding: 5px;
}

#videoModal .close {
  position: absolute;
  right: 15px;
  top: 10px;
  color: var(--branco);
  opacity: 0.8;
  z-index: 999;
  font-size: 30px;
  font-weight: 300;
  text-shadow: none;
  transition: var(--transicao);
}

#videoModal .close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== CARD PERSONALIZADO ===== */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transicao);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
}

.card-img-top {
  transition: var(--transicao);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* ===== ANIMAÇÕES ADICIONAIS ===== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .topo {
    padding: 100px 0 60px;
    min-height: 400px;
  }
  
  .circle-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
  }
  
  .metodo {
    display: block;
    margin: 10px 0;
    text-align: center;
  }
  
  #slider .carousel-item {
    padding: 30px 20px;
    min-height: 250px;
  }
  
  #slider p {
    font-size: 1rem;
  }
  
  .aspas {
    font-size: 3rem;
    top: 10px;
    left: 15px;
  }
}

@media (max-width: 576px) {
  .topo h1 {
    font-size: 1.8rem;
  }
  
  .divisor-white,
  .divisor-roxo {
    width: 60px;
  }
  
  .circle-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
}

/* ===== EFEITOS ESPECIAIS ===== */
.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--roxo-gradient);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: var(--transicao);
}

.glow-effect:hover::after {
  opacity: 0.5;
  filter: blur(10px);
}

/* ===== TIMELINE PARA DEPOIMENTOS ===== */
.testimonial-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--roxo);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  border: 3px solid var(--roxo);
}