:root {
  --primary: #0F172A;
  --primary-dark: #182646;
  --secondary: #00cec9;
  --dark: #2d3436;
  --light: #f5f6fa;
  --danger: #d63031;
    /* --danger: #00ff0d; */
  --warning: #fdcb6e;
  --success: #00b894;
}

body {
  /* font-family: 'Poppins', sans-serif; */
    font-family: 'Roboto', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section .hero-image {
  max-height: 300px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.wave-divider {
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23f8f9fa'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: -1px;
}

/* Seções */
.section-title {
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary);
  bottom: -8px;
  left: 25%;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Cards de Produto */
.product-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.badge-promo {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--danger);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 1;
}

.price-original {
  text-decoration: line-through;
  color: #ff1414;
  font-size: 0.9rem;
}

.price-final {
  font-weight: bold;
  color: #00b300;
  font-size: 1.4rem;
  margin-left: 8px;
}

.price-normal {
  font-weight: bold;
  color: #008000;
  font-size: 1.2rem;
}

/* Cards de Destaque */
.feature-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

/* Newsletter */
.newsletter-form .form-control {
  height: 50px;
  border-radius: 5px 0 0 5px;
}

.newsletter-form .btn {
  border-radius: 0 5px 5px 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .feature-card {
    margin-bottom: 1rem;
  }
}

/* Animações */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Navbar Estilizada */
.navbar {
  padding: 0.8rem 0;
  transition: all 0.3s;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar .logo-img {
  transition: transform 0.3s;
}

.navbar:hover .logo-img {
  transform: rotate(15deg);
}

.navbar .brand-text {
  background: linear-gradient(to right, #5c9de7, #00cec9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
}

.nav-link {
  position: relative;
  margin: 0 0.2rem;
  transition: all 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #5c9de7, #00cec9);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Footer Estilizado */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #3592e9, #00cec9);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.payment-methods img {
  transition: transform 0.3s;
  filter: grayscale(30%);
}

.payment-methods img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Efeitos de hover nos links */
.list-unstyled a {
  transition: all 0.2s;
  opacity: 0.8;
}

.list-unstyled a:hover {
  opacity: 1;
  color: #00cec9 !important;
  padding-left: 5px;
}
footer a:hover {
  color: #00cec9 !important; /* Substitua pela cor desejada */
}
.social-icons a:hover {
  background: #00cec9; /* Cor de fundo no hover */
  color: white !important; /* Cor do ícone no hover */
}

.social-icons a {
  color: white; /* Cor normal do ícone */
}
footer::before {
  background: linear-gradient(to right, #3592e9, #00cec9); /* Altere estas cores */
}
  .back-to-top {
      position: fixed;
      right: 20px;
      bottom: 40px;
      display: none;
      z-index: 999;
      background-color: #a3c293;
      color: #283618;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    .back-to-top:hover {
      background-color: #7a9b5c;
    }