/* Reset e Variáveis */
:root {
  --primary: #2a4365;
  --primary-dark: #1a365d;
  --primary-light: #4299e1;
  --secondary: #dd6b20;
  --secondary-dark: #c05621;
  --accent: #38b2ac;
  --dark: #2d3748;
  --light: #f7fafc;
  --gray: #718096;
  --gray-light: #e2e8f0;
  --success: #48bb78;
  --danger: #f56565;
  --warning: #ed8936;

  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

/* Adicione ao seu CSS para garantir que os links sejam clicáveis */

.comprar-agora-btn {
  cursor: pointer;
  pointer-events: auto !important;
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
}

.comprar-agora-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Remover qualquer estilo que possa estar bloqueando cliques */
.product-actions a {
  pointer-events: auto !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  color: var(--secondary);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn i {
  font-size: 1.1em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* Telegram Float */
.telegram-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0088cc, #006699);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-telegram 2s infinite;
}

.telegram-float:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0099e6, #0077b3);
  animation: none;
}

@keyframes pulse-telegram {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 136, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  z-index: 1001;
}

/* Hero */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 5px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-10deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: perspective(1000px) rotateY(-10deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(-10deg) translateY(-20px);
  }
}

/* SEÇÃO DO VÍDEO EM DESTAQUE */
.video-destaque-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.video-destaque-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.video-destaque-header {
  text-align: center;
  margin-bottom: 50px;
}

.video-destaque-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.video-destaque-header h2 i {
  color: var(--secondary);
  font-size: 2.2rem;
}

.video-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-destaque-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  background: rgb(0, 0, 0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-wrapper {
  position: relative;
  margin-top: 80px;
  height: 0;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.95rem;
}

.video-meta i {
  color: var(--secondary);
}

.video-description h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 600;
}

.video-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-description li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--dark);
  line-height: 1.5;
}

.video-description li i {
  color: var(--success);
  margin-top: 3px;
  flex-shrink: 0;
}

.video-cta {
  background: linear-gradient(
    135deg,
    rgba(221, 107, 32, 0.05),
    rgba(221, 107, 32, 0.1)
  );
  padding: 25px;
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
  margin-top: auto;
}

.video-cta p {
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.6;
}

.video-cta .btn {
  width: 100%;
  justify-content: center;
}

.video-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Categorias */
.categories-section {
  background: var(--light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  background: white;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.category-card:hover,
.category-card.active {
  border-color: var(--secondary);
  background: linear-gradient(
    135deg,
    rgba(221, 107, 32, 0.05),
    rgba(221, 107, 32, 0.1)
  );
  transform: translateY(-5px);
}

.category-card i {
  font-size: 2.5rem;
  color: var(--secondary);
}

.category-card span {
  font-weight: 600;
  font-size: 1rem;
}

/* Estilos para os novos botões dos produtos */
.product-badge.discount-badge {
  left: auto;
  right: 15px;
  background: linear-gradient(135deg, var(--danger), #e53e3e);
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.current-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.old-price {
  font-size: 0.95rem;
  color: var(--gray);
  text-decoration: line-through;
}

.product-info {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.9rem;
}

.info-item i {
  color: var(--primary-light);
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
  justify-content: center;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Ajuste para os botões em telas menores */
@media (max-width: 480px) {
  .product-actions {
    flex-direction: column;
  }

  .current-price {
    font-size: 1.6rem;
  }
}

/* Filtros */
.products-filter {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-group label {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.filter-select {
  padding: 10px 15px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background: white;
  cursor: pointer;
  min-width: 180px;
}

.price-slider {
  width: 180px;
  height: 6px;
  -webkit-appearance: none;
  background: var(--gray-light);
  border-radius: 3px;
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: var(--shadow);
}

#price-value {
  font-weight: 600;
  color: var(--secondary);
  min-width: 120px;
  display: inline-block;
}

/* Produtos Grid */
.products-section {
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.product-image {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  display: inline-block;
  background: var(--gray-light);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  align-self: flex-start;
}

.product-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.3;
  flex-grow: 1;
}

.product-description {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}

.product-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.product-price .old-price {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 5px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--warning);
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
}

/* Paginação */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.pagination-btn {
  padding: 10px 20px;
  border: 2px solid var(--gray-light);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--secondary);
  color: var(--secondary);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 10px;
}

.page-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  background: white;
  border: 2px solid var(--gray-light);
}

.page-number:hover,
.page-number.active {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

/* Sobre */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: white;
  padding: 15px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 120px;
}

.experience-badge span {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.experience-badge small {
  font-size: 0.8rem;
  opacity: 0.9;
  display: block;
  margin-top: 2px;
}

.about-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-intro {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-features {
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature i {
  color: var(--success);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature p {
  line-height: 1.5;
  color: var(--dark);
}

.certificacoes {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--gray-light);
}

.certificacoes h4 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.2rem;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-badge {
  background: var(--gray-light);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

/* Depoimentos Carrossel */
.testimonials-section {
  background: var(--light);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gray-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  font-size: 1.2rem;
  color: var(--dark);
}

.carousel-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.carousel-btn.prev {
  left: -70px;
}

.carousel-btn.next {
  right: -70px;
}

.testimonials-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.testimonial-slide {
  padding: 40px;
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  text-align: center;
}

.rating {
  color: var(--warning);
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-author p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.testimonial-author small {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Newsletter CTA */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

.cta-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-xl);
}

.cta-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-form .input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-note {
  opacity: 0.7;
  font-size: 0.9rem;
  color: var(--gray);
}

.cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-top: 5px;
  flex-shrink: 0;
}

.contact-method h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-method p {
  color: var(--gray);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  color: var(--dark);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom p {
  margin-bottom: 5px;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.animate-slide-left {
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.animate-slide-right {
  animation: slideInRight 1s ease forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.delay-1s {
  animation-delay: 0.3s;
}
.delay-2s {
  animation-delay: 0.6s;
}
.delay-3s {
  animation-delay: 0.9s;
}

/* Mensagens de Formulário */
.form-error,
.form-success {
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}

.form-error {
  background: rgba(245, 101, 101, 0.1);
  border: 2px solid var(--danger);
  color: var(--danger);
}

.form-success {
  background: rgba(72, 187, 120, 0.1);
  border: 2px solid var(--success);
  color: var(--success);
}

.form-error i,
.form-success i {
  font-size: 1.2rem;
}

/* Loading Spinner */
.loading-spinner {
  text-align: center;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--gray-light);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: white;
  padding: 15px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 90%;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-info {
  border-left: 4px solid var(--primary-light);
}

.toast-error {
  border-left: 4px solid var(--danger);
}

.toast-close {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  margin-left: auto;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search Input */
.search-input {
  padding: 12px 15px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  flex: 1;
  min-width: 200px;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--secondary);
}

/* No Products/Error States */
.no-products,
.error-message {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.no-products i,
.error-message i {
  font-size: 3rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.no-products h3,
.error-message h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.no-products p,
.error-message p {
  color: var(--gray);
  margin-bottom: 30px;
}

/* Meta Info do Produto (para modal) */
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 0.95rem;
}

.meta-item i {
  color: var(--secondary);
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-content,
  .contact-grid,
  .footer-grid,
  .cta-card,
  .video-destaque-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-header h2,
  .video-destaque-header h2 {
    font-size: 2rem;
  }

  .video-destaque-header h2 {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: var(--shadow);
    transform: translateX(-100%);
    opacity: 0;
    transition: var(--transition);
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 10px 0;
  }

  .hero {
    padding: 120px 0 60px;
    margin-top: 60px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .btn-lg {
    width: 100%;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .testimonial-slide {
    padding: 30px 20px;
  }

  .video-destaque-section {
    padding: 60px 0;
  }

  .video-destaque-header h2 {
    font-size: 1.8rem;
  }

  .video-subtitle {
    font-size: 1.1rem;
  }

  .video-meta {
    flex-direction: column;
    gap: 10px;
  }

  .video-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .video-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ Section */
.faq-section {
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2d3748;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #dd6b20;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.faq-answer p {
  line-height: 1.6;
  color: #4a5568;
}

.faq-answer a {
  color: #dd6b20;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
  margin-bottom: 10px;
  color: #2d3748;
}

.faq-cta p {
  margin-bottom: 20px;
  color: #718096;
}

/* CTA Download Section */
.cta-card {
  background: linear-gradient(135deg, #2a4365, #1a365d);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.cta-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-content h2 i {
  color: var(--secondary);
}

.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Download Steps */
.download-steps {
  margin: 30px 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: white;
}

.step-content p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* CTA Image Area */
.cta-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.download-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.download-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.preview-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.download-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.download-info h4 {
  margin-bottom: 15px;
  color: white;
  font-size: 1.2rem;
}

.download-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: white;
  opacity: 0.9;
}

.download-info li i {
  color: var(--success);
  margin-top: 3px;
}

/* CTA Stats */
.cta-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stats .stat {
  text-align: center;
}

.cta-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.cta-stats .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  display: block;
  margin-top: 5px;
}

/* Download Modal Styles */
.download-modal-content {
  min-height: 500px;
}

.download-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.download-step.active {
  display: block;
}

.step-header {
  text-align: center;
  margin-bottom: 30px;
}

.step-indicator {
  display: inline-block;
  background: var(--gray-light);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--dark);
}

/* Ad Container */
.video-ad-container {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
  min-height: 300px;
  position: relative;
}

.ad-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

.ad-loader {
  text-align: center;
  color: white;
}

.ad-loader .loader {
  width: 50px;
  height: 50px;
  border: 4px solid var(--gray);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Ad Timer */
.ad-timer {
  padding: 20px;
  background: white;
  border-top: 1px solid var(--gray-light);
}

.timer-progress {
  height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.timer-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
  width: 0%;
  transition: width 1s linear;
}

.timer-text {
  text-align: center;
  font-weight: 600;
  color: var(--dark);
}

/* Download Success */
.download-success {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 30px;
}

.download-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.download-option {
  padding: 25px;
  background: var(--light);
  border-radius: var(--radius);
  border: 2px solid var(--gray-light);
}

.option-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.download-option h4 {
  margin-bottom: 10px;
  color: var(--dark);
}

.download-option p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.email-form .input-group {
  display: flex;
  gap: 10px;
}

.email-form input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
}

.email-form small {
  display: block;
  margin-top: 10px;
  color: var(--gray);
  font-size: 0.85rem;
}

/* Download Bonus */
.download-bonus {
  background: linear-gradient(
    135deg,
    rgba(221, 107, 32, 0.1),
    rgba(221, 107, 32, 0.05)
  );
  padding: 25px;
  border-radius: var(--radius);
  border: 2px solid var(--secondary);
  margin-top: 30px;
}

.download-bonus h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--dark);
}

.download-bonus h4 i {
  color: var(--secondary);
}

/* Step Actions */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .download-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cta-card {
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-stats {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }

  .filter-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-select {
    width: 100%;
  }

  .price-slider {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-numbers {
    order: -1;
    width: 100%;
    justify-content: center;
  }
}
