:root {
  --primary: #f4c430;
  --background: #000;
  --text: #fff;
  --text-muted: #bbb;
  --card-bg: #111;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  background-color: #222; /* Fundo suave para a seção */
}

.hero {
  position: relative;
  height: 100vh;
  background: url('assets/img/hero.jpg') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* aqui define a escuridão */
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2; /* garante que o conteúdo fique acima da overlay */
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: #f4c430;
  font-weight: 800;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #fff;
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #ddd;
}


.btn-primary {
  background-color: #fff;
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #ddd;
}


.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #ffe05d;
}

.image-preview img {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 2rem auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.stores {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #222; /* Fundo suave para a seção */
}

.store-logos img {
  height: 50px;
  margin: 1rem;
}

.subinfo {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.features {
  padding: 3rem 1rem;
  background: #111;
  text-align: center;
}

.features h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
}

/* Estilos para a seção de preços */
.pricing {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #222; /* Fundo suave para a seção */
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}


.pricing h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
}

.price-box {
  display: inline-block;
  background: #222;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--primary);
  margin-top: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-box:hover {
  transform: translateY(-10px); /* Eleva o plano quando o mouse passa */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.price-box p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
}

.price-box p strong {
  color: #FFD700; /* Dourado para destacar o preço */
  font-size: 1.8rem;
}

.price-box p:nth-of-type(2) {
  font-size: 1.2rem; /* Reduzido para dar ênfase maior ao preço inicial */
  color: #ddd;
}

.price-box p:nth-of-type(2) strong {
  font-size: 1.2rem; /* Reduzido para dar ênfase maior ao preço inicial */
  color: #FFD700;
}

@media (max-width: 768px) {
  .pricing {
    padding: 3rem 1rem;
  }

  .price-box {
    padding: 1.5rem;
    width: auto;
  }
}

/* Estilos para a seção de CTA */
.cta {
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(to right, #1a1a1a, #000);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Adicionando um destaque sutil à imagem de fundo */
.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/evolution-image.jpg') center center no-repeat;
  background-size: cover;
  opacity: 0.15;
  z-index: -1;
}

/* Título */
.cta h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeIn 1s ease-out forwards; /* "forwards" mantém o estado final da animação */
}

/* Texto */
.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards; /* "forwards" mantém o estado final da animação */
  animation-delay: 0.5s;
}

/* Botão */
.cta .btn-secondary {
  background: var(--primary);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta .btn-secondary:hover {
  background: #ffe05d;
  transform: scale(1.1); /* Aumenta o botão ao passar o mouse */
}

/* Animação de entrada */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cta h3 {
    font-size: 2.4rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta .btn-secondary {
    padding: 0.8rem 1.8rem;
  }
}

/* Estilos para a seção de funcionalidades */
.func {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #222; /* Fundo suave para a seção */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.func h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.func ul {
  list-style-type: none;
  padding: 0;
}

.func ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.func ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.func ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.func ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.func ul li:nth-child(4) {
  animation-delay: 0.8s;
}

.func ul li:nth-child(5) {
  animation-delay: 1s;
}

.func ul li .icon {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.func ul li:hover .icon {
  transform: scale(1.2); /* Ícone cresce ao passar o mouse */
}

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

@media (max-width: 768px) {
  .func {
    padding: 2rem 1rem;
  }

  .func h3 {
    font-size: 2rem;
  }

  .func ul li {
    font-size: 1rem;
  }

  .func ul li .icon {
    width: 25px;
    height: 25px;
  }
}


footer {
  background: #080808;
  padding: 2rem 1rem;
  text-align: center;
}

footer h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

footer ul {
  list-style: none;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

footer li {
  margin: 0.3rem 0;
}

footer .copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

.card .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  fill: var(--primary);
}

.animate-card {
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-card:nth-child(2) { animation-delay: 0.1s; }
.animate-card:nth-child(3) { animation-delay: 0.2s; }
.animate-card:nth-child(4) { animation-delay: 0.3s; }
.animate-card:nth-child(5) { animation-delay: 0.4s; }

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


.image-carousel {
  overflow: hidden;
  margin: 3rem auto;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  background-color: #222; /* Fundo suave para a seção */
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  animation: slide 12s infinite;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

@keyframes slide {
  0%, 20%   { transform: translateX(0%); }
  25%, 45%  { transform: translateX(-100%); }
  50%, 70%  { transform: translateX(-200%); }
  75%, 100% { transform: translateX(0%); }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    height: 100dvh;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .price-box {
    padding: 1.2rem;
    margin: 1.5rem auto;
  }

  .carousel-track img {
    height: 200px;
  }

  .cta h3 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .features h3,
  .func h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    min-height: 100vh;
    height: 100dvh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
  }

  .cta h3 {
    font-size: 1.6rem;
  }

  .cta p {
    font-size: 0.9rem;
  }

  .func ul li {
    font-size: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .func ul li .icon {
    margin: 0 0 0.5rem 0;
  }

  footer h4 {
    font-size: 1rem;
  }

  footer ul {
    font-size: 0.85rem;
  }

  .carousel-track img {
    height: 180px;
  }
}
