
/* ---------- Utilitários de cor personalizados ---------- */
.text-primary-700 { color: #7B2CBF !important; }
.bg-primary-700   { background-color: #7B2CBF !important; }
.btn-primary-700  { background-color: #7B2CBF; border-color: #7B2CBF; color: #fff; }
.btn-primary-700:hover { background-color: #9333EA; border-color: #9333EA; }

.text-yellow-500 { color: #FACC15 !important; }
.btn-yellow { background-color: #FACC15; border-color: #FACC15; color: #1F2937; }
.btn-yellow:hover { filter: brightness(0.95); }

.btn-soft-secondary {
  background-color: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #1F2937;
}
.btn-soft-secondary:hover { background-color: #e9eaee; }


/* Fundo gradiente */
.hero-section {
    background: linear-gradient(135deg, #a020f0, #ff69b4);
    overflow: hidden;
}

/* Wrapper */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

/* Imagem principal */
.hero-img {
    max-height: 500px;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Shape decorativo */
.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Ícones flutuantes com efeito base */
.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.7;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
    z-index: 3;
    will-change: transform;
}

/* Posições iniciais dos ícones */
.icon1 { top: 10%; left: 10%; }
.icon2 { top: 20%; right: 5%; }
.icon3 { bottom: 20%; left: 5%; }
.icon4 { bottom: 15%; right: 15%; }
.icon5 { top: 50%; left: -5%; }

/* ===== CARDS COLORIDOS ===== */
.card-yellow {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}
.card-pink {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
}
.card-blue {
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
}

/* ===== TEXTOS ===== */
h1, h2, h5 {
    font-family: 'Poppins', sans-serif;
}

/* ===== RODAPÉ ===== */
footer a {
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
/* Gradiente no título */
.text-gradient {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Botão com gradiente */
.btn-gradient {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  border: none;
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

/* Animações */
.animate-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 0.8s ease forwards;
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.historias img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.btn-gradient {
  background: linear-gradient(90deg, #e83e8c, #6f42c1);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
}
.text-gradient {
  background: linear-gradient(90deg, #e83e8c, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-content {
  border-radius: 16px;
  overflow: hidden;
}

.modal-header .modal-title {
  font-size: 1.25rem;
}

.modal-body img {
  transition: transform 0.3s ease;
}

.modal-body img:hover {
  transform: scale(1.05);
}

.modal-footer .btn-gradient {
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
