/* Reset and Base Styles */

@supports (-webkit-touch-callout: none) {
  .min-h-screen {
    min-height: -webkit-fill-available !important;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow: auto !important; /* ou remova overflow: hidden */
}

:root {
  /* Light Theme Colors */
  --bg-color: #ffffff;
  --text-color: #333333;
  --text-secondary: #6b7280;
  --border-color: #e5e7eb;
  --card-bg: #ffffff;
  --accent-bg: #f9fafb;
  --primary-color: #2563eb;
  --primary-hover: #1955d8;
  --highlight-color: #fbbf24;
  --gradient-color: #7c3aed;
}

.dark-theme {
  /* Dark Theme Colors */
  --bg-color: #101729;
  --text-color: #ffffff;
  --text-secondary: #d1d5db;
  --border-color: #1c2846;
  --card-bg: transparent;
  --accent-bg: #101729;
  --primary-color: #3b82f6;
  --primary-hover: #1955d8;
  --highlight-color: #fbbf24;
  --gradient-color: #7c3aed;
}

a{
    text-decoration: none;
}

/* Loader Overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

/* Logo */
.loader-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-in-out;
}

/* Spinner */
.loader {
  width: 60px;
  height: 60px;
  border: 6px solid var(--accent-bg);
  border-top: 6px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

/* Texto animado */
.loader-text {
  color: var(--text-secondary);
  font-size: 1rem;
  animation: pulseText 1.5s ease-in-out infinite;
}

/* Animações */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseText {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
/* Fim tela de carregamento */


body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.3s ease;
  padding-top: 66px; 
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header fixo */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Tema escuro */
.dark-theme .header {
  background: rgba(16, 23, 41, 0.9);
}

/* Wrapper do conteúdo do header */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
}

.logo-highlight {
  color: var(--primary-color);
  font-weight: 800;
}

/* Navegação desktop */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Navegação mobile */
.mobile-nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

/* Espaço no topo do body para não cobrir o conteúdo */
body {
  padding-top: 80px; /* ajuste conforme a altura real do seu header */
}


/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}


.theme-toggle:hover {
  background: var(--accent-bg);
}

.theme-toggle svg {
  width: 1rem;
  height: 1rem;
}

.theme-toggle-menu{
  font-weight: 500;
    width: 2.5rem;
  height: 2.1rem;
}


.light-theme .moon-icon {
  display: none;
}

.dark-theme .sun-icon {
  display: none;
}


.light-theme .whats-icon{
  color: var(--text-color);

}
.dark-theme .whats-icon{
  color: var(--text-color);
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-suporte{
    margin-top: 2.5rem;
}



.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--accent-bg);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary-color);
}

.btn-sm {
  padding: 0.5rem;
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.icon {
  width: 1rem;
  height: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  padding: 3rem 0 5rem;
  transition: all 0.3s ease;
}

.dark-theme .hero {
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--gradient-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  justify-content: left;
  margin-bottom: 2rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  color: var(--highlight-color);
  font-size: 1.25rem;
}

.star.half {
  opacity: 0.5;
}

.rating-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

.rating-link:hover {
  color: var(--primary-color);
}

#meuVideo{
    width: 100%;
}

.video-container {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all .2s;
}

.video-container:hover {
  transform: scale(1.02);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.1);
}

.play-icon {
  width: 4rem;
  height: 4rem;
  color: white;
  transition: all 0.2s;
}

.play-button:hover .play-icon {
  width: 6rem;
  height: 6rem;
  color: var(--primary-color);

}

/* Content Sections */
.content-section {
  padding: 4rem 0;
  transition: all 0.3s ease;
}

.bg-white {
  background: var(--bg-color);
}

.bg-gray {
  background: var(--accent-bg);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 2.7rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.rounded-image {
  width: 100%;
  border-radius: 0.5rem;
  /*box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);*/
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #22c55e;
  flex-shrink: 0;
}

.support-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.support-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.support-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-color);
}

.bg-blue {
  background: #dbeafe;
}

.dark-theme .bg-blue {
  background: rgba(59, 130, 246, 0.2);
}

.support-content h3 {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.support-content p {
  color: var(--text-secondary);
}

/* Features Section */
.features-section {
  background: var(--bg-color);
  padding: 4rem 0;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  width: fit-content;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-color);
}

.feature-card h3 {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
}

.features-cta {
  text-align: center;
}

/* FAQ Section */
.faq-section {
  background: var(--accent-bg);
  padding: 4rem 0;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-color);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--accent-bg);
}

.faq-arrow {
  transition: transform 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-separator {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 1rem;
}

.faq-answer p {
  color: var(--text-secondary);
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-color);
  padding: 4rem 0;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.reviews-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.existing-reviews-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.review-card {
  background: var(--card-bg);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-name {
  font-weight: 600;
  color: var(--text-color);
}

.review-stars {
  display: flex;
  gap: 0.125rem;
}

.review-stars .star {
  font-size: 1rem;
}

.review-stars .star.filled {
  color: var(--highlight-color);
}

.review-comment {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Review Form */
.review-form-card {
  background: var(--card-bg);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}

.review-form-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.review-form-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.review-form {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: transform 0.2s;
}

.star-btn:hover {
  transform: scale(1.1);
}

.star-btn .star-icon {
  font-size: 2rem;
  color: #d1d5db;
  transition: color 0.2s;
}

.star-btn.active .star-icon,
.star-btn:hover .star-icon {
  color: var(--highlight-color);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Catalog Section */
.catalog-section {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--gradient-color) 100%);
  padding: 4rem 0;
  text-align: center;
}

.catalog-content {
  color: white;
}

.catalog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.catalog-subtitle {
  font-size: 1.25rem;
  color: #93c5fd;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #60a5fa;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #000;
  border-radius: 0.5rem;
  padding: 1rem;
  width: 100%;
  max-width: 64rem;
  max-height: 93vh;
  overflow: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
  padding-bottom: 0.8rem;
}

.modal-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0.25rem;
 color: #fff;
}

.video-wrapper {
  aspect-ratio: 16/9;
  background: var(--accent-bg);
  border-radius: 0.375rem;
  overflow: hidden;
}

/* Toast */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s;
  max-width: 400px;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-color);
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text-secondary);
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-to-top.show {
  opacity: 1;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav {
    display: flex;
  }
  
  .hero {
    padding: 2rem 0 3rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  .hero-cta-text{
    margin-top: -20px;
    display: block;
  }
  
  .hero-rating {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .order-2 {
    order: 1;
  }
  
  .order-1 {
    order: 2;
  }
  
  .section-title {
    font-size: 1.875rem;
    text-align: center;
  }
  
  .features-title {
    font-size: 1.875rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .faq-title {
    font-size: 1.875rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reviews-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .reviews-title {
    font-size: 1.875rem;
  }
  
  .catalog-title {
    font-size: 1.875rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .toast {
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .faq-title {
    font-size: 1.5rem;
  }
  
  .catalog-title {
    font-size: 1.5rem;
  }
  
  .reviews-title {
    font-size: 1.5rem;
  }
}


/*video */

#meuVideo{
  widows: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 800px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.video-container video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  border: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}

.botao-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.video-container svg {
  transition: all .2s;
}

.video-container:hover svg {
  transform: scale(1.2);
}
#meuVideo{
    width: 100%;
}

#meuVideo.hide-controls::cue {
  display: none;
}

#meuVideo.hide-controls::-webkit-media-controls {
  display: none !important;
}

#meuVideo.hide-controls::-moz-media-controls {
  display: none !important;
}
