/* Estilos de Seção */
.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  top: -2.5px;
}

.section-divider::before {
  left: -15px;
}

.section-divider::after {
  right: -15px;
}

/* Ajuste para o h2 dentro do section-header */
.section-header h2 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 2.2em;
}

/* FAQ */
.faq {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: #fff;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2em;
  color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  font-size: 1.5em;
  font-weight: 300;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
  padding: 0 25px;
  margin: 0;
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 1.02em;
  padding-top: 5px;
  padding-bottom: 5px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 10px 25px 20px;
  margin-top: 5px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  
  .faq-answer p {
    padding: 0 20px 0;
    font-size: 0.95em;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 15px;
  }
}

/* Estilos Gerais */
:root {
  --primary: #00ff88;
  --primary-dark: #00cc6a;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --border: #222222;
  --card-bg: #111111;
  --success: #00ff88;
  --warning: #ffcc00;
  --danger: #ff4444;
  --font-main: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background-color: var(--bg-darker);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: rgba(0, 255, 136, 0.1);
}

.btn-link {
  color: var(--primary);
  text-decoration: underline;
  padding: 0;
  background: none;
  border: none;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1em;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 20px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  justify-content: center;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==') repeat;
  opacity: 0.5;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.badge {
  display: inline-block;
  background-color: var(--primary);
  color: #000;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin: 0 auto 2.5rem;
  color: #ccc;
  max-width: 600px;
  line-height: 1.6;
  padding: 0 20px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 500px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(45deg, rgba(0,255,136,0.1) 0%, rgba(0,0,0,0.2) 100%);
  border-radius: 20px;
  border: 2px dashed var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 1.2em;
  text-align: center;
  padding: 20px;
}

/* Estilos para o vídeo no mobile */
.hero-video {
  width: 90%;
  max-width: 400px; /* Largura máxima um pouco maior para telas maiores */
  margin: 0.1rem auto 0; /* Reduzido ao mínimo possível */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  aspect-ratio: 4/5; /* Proporção 4:5 */
  background: #000;
  transform: translateZ(0);
  /* Garante que o vídeo não fique muito pequeno em telas muito estreitas */
  min-width: 280px;
}

/* Ajustes para telas maiores */
@media (min-width: 768px) {
  .hero-video {
    width: 100%;
    max-width: 400px; /* Mantém um tamanho máximo mesmo em telas grandes */
  }
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  z-index: 2;
}

.video-container.playing .video-placeholder {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 3;
  border: none;
  padding: 0;
  cursor: pointer;
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--cor-destaque);
}

.play-button svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-item h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95em;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: var(--bg-darker);
}

.benefits h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.benefits h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background-color: var(--card-bg);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.benefit-icon {
  font-size: 2.5em;
  margin-bottom: 20px;
  display: inline-block;
}

.benefit-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--primary);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 1em;
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.gallery h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.gallery h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item span {
  display: block;
  padding: 15px;
  text-align: center;
  background: var(--card-bg);
  font-weight: 600;
  color: var(--text);
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Offer Section */
.offer {
  padding: 100px 0;
  background: linear-gradient(135deg, #001a0f 0%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLDI1NSwxMzYsMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=') repeat;
  opacity: 0.5;
  z-index: 0;
}

.offer .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.offer-tag {
  display: inline-block;
  background-color: var(--primary);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.price {
  margin: 30px 0;
}

.old-price {
  display: block;
  font-size: 1.5em;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.new-price {
  display: block;
  font-size: 3em;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: 10px 0;
}

.installments {
  display: block;
  font-size: 1.2em;
  color: var(--text-muted);
  margin-top: 10px;
}

.offer-features-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 30px 0;
}

.offer-features {
  text-align: left;
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-muted);
}

.offer-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.payment-methods {
  margin-top: 30px;
  color: var(--text-muted);
  font-size: 0.9em;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.payment-icons span {
  background-color: var(--card-bg);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9em;
  border: 1px solid var(--border);
}

.offer-t.badge {
  display: inline-block;
  background: var(--cor-destaque);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  margin: 0 auto 0; /* Removido o espaçamento inferior */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 255, 136, 0.2);
  transform: scale(0.9);
  line-height: 1.2;
}

/* Warranty Section */
.warranty {
  padding: 100px 0;
  background-color: var(--bg-darker);
  text-align: center;
}

.warranty-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.warranty.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  margin-top: 2rem;
}

.warranty h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.warranty {
  text-align: center;
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.warranty h2 {
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.warranty h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
}

.warranty-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.warranty-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  gap: 15px;
}

.warranty-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.warranty-icon {
  font-size: 1.5em;
  color: var(--primary);
  font-weight: bold;
  min-width: 30px;
}

.warranty-feature h3 {
  color: #fff;
  margin: 0 0 8px 0;
  font-size: 1.2em;
}

.warranty-feature p {
  font-size: 0.95em;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.warranty-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
  max-width: 200px;
  transition: transform 0.3s ease;
}

.warranty-badge:hover {
  transform: scale(1.05);
}

.warranty-seal {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0, 255, 136, 0.3));
  transition: all 0.3s ease;
}

.warranty-badge:hover .warranty-seal {
  filter: drop-shadow(0 8px 25px rgba(0, 255, 136, 0.4));
}

/* Depoimentos Section */
.depoimentos {
  padding: 100px 0;
  background-color: var(--bg-darker);
  text-align: center;
}

.depoimentos-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.depoimentos h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.depoimentos {
  text-align: center;
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.depoimentos h2 {
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.depoimentos h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
}

.depoimentos-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.depoimentos-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  gap: 15px;
}

.depoimentos-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.depoimentos-icon {
  font-size: 1.5em;
  color: var(--primary);
  font-weight: bold;
  min-width: 30px;
}

.depoimentos-feature h3 {
  color: #fff;
  margin: 0 0 8px 0;
  font-size: 1.2em;
}

.depoimentos-feature p {
  font-size: 0.95em;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.depoimentos-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
  max-width: 200px;
  transition: transform 0.3s ease;
}

.depoimentos-badge:hover {
  transform: scale(1.05);
}

.depoimentos-seal {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0, 255, 136, 0.3));
  transition: all 0.3s ease;
}

.depoimentos-badge:hover .depoimentos-seal {
  filter: drop-shadow(0 8px 25px rgba(0, 255, 136, 0.4));
}

/* DEPOIMENTOS */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-darker);
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.testimonials h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-slide {
  display: none;
  width: 100%;
  transition: opacity 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  position: relative;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.testimonial-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.testimonial-image:hover img {
  transform: scale(1.02);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary);
  color: #000;
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.5em;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  
  .hero h1 {
    font-size: 2em;
  }
  
  .hero-subtitle {
    font-size: 1em;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .offer .btn-large {
    width: 100%;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.hero-image {
  animation: float 6s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
