:root {
  --gold: #FFD700;
  --dark: #333333;
  --light: #ffffff;
  --gray: #f9f9f9;
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

html {height:100%;}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  scroll-behavior: smooth;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,h2,h3 {font-family: 'Georgia', serif; margin-top:0;}
h1 {font-size: 48px;}
h2 {font-size: 36px; margin-bottom:1rem;}
h3 {font-size: 24px; margin-bottom:.5rem;}

header {
  background-color: #1e293b;
  color:var(--light);
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}
.menu-toggle {
  background:none;
  border:none;
  font-size:1.5rem;
  display:none;
  cursor:pointer;
}
.nav ul {list-style:none;display:flex;gap:1rem;padding:0;margin:0;}
.nav a {text-decoration:none;color:var(--gold);font-weight:600;}
.nav a:hover {color:var(--gold);}
.logo {display:flex;align-items:center;gap:.5rem;font-weight:600;font-size:1.25rem;}

.btn {
  display:inline-block;
  background:var(--gold);
  color:var(--light);
  padding:.5rem 1rem;
  border-radius:4px;
  text-decoration:none;
  font-weight:600;
  transition:transform .3s ease, box-shadow .3s ease;
}
.btn:hover {transform:scale(1.05); box-shadow:0 4px 10px rgba(0,0,0,.1);}
.btn-primary {
  background:linear-gradient(90deg,var(--gold),#e6c200); 
  color:#000;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  border-color: #e6c200;
}

.btn-free {
  background: #6c757d;
  color: white;
  width: 80%;
  margin-bottom: 1rem;
  text-align: center;
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-plan {
  width:80%;
  margin-bottom: 1rem;
  text-align: center;
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
}

.btn-free:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.hero {
  position:relative;
  background:linear-gradient(var(--gold), var(--dark));
  color:var(--light);
  overflow:hidden;
  text-align:center;
  padding:6rem 0 3rem;
}
.hero-bg::before {
  content:"";
  position:absolute;
  inset:0;
  background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1200&q=60') center/cover no-repeat;
  filter: blur(4px);
  opacity:.6;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-text {
  text-align: center;
  max-width: 100%;
}

.hero-text .btn-primary {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.hero-img {max-width:400px;border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,.3);animation:float 6s ease-in-out infinite;}
@keyframes float {0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
.scroll-indicator {margin-top:1rem;animation:bounce 1.5s infinite;color:var(--light);} 
@keyframes bounce {0%,100%{transform:translateY(0);}50%{transform:translateY(6px);}}

.beneficios {background:var(--light);padding:3rem 0;}
.benefit-grid {display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));}
.benefit-item {text-align:center;padding:1rem;transition:transform .3s ease;}
.benefit-icon {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.benefit-item svg {color:var(--gold);margin-bottom:.5rem;}
.benefit-item:hover {transform:translateY(-5px);}

@media (min-width: 768px) {
  h1{font-size:64px;}
  .hero-content{
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
  .hero-text{
    max-width: 50%;
    text-align: left;
  }
  .download-buttons{
    justify-content: flex-end;
    margin: 0;
  }
  
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .benefit-item:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: center;
  }
  
  .benefit-item:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: center;
  }
  
  .benefit-item:nth-child(6) {
    grid-column: 3 / 4;
    justify-self: center;
  }
  
  /* Remove a centralização especial já que agora temos 3 itens em cada linha */
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(5) {
    transform: none;
  }
}

.benefit-item-center {
  grid-column: span 1.5;
  justify-self: center;
}

.mockup {background:linear-gradient(var(--dark), var(--gold));color:var(--light);text-align:center;padding:4rem 0;}
.tablet {margin:0 auto;animation:zoom 0.6s ease forwards;}
.tablet video {border-radius:20px;box-shadow:0 8px 24px rgba(0,0,0,.4);width:100%;}
@keyframes zoom {from{transform:scale(.95);opacity:0;}to{transform:scale(1);opacity:1;}}

.planos {background:var(--dark);color:var(--light);padding:4rem 0;text-align:center;}
.plan-grid {display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));overflow:visible;}

@media (min-width: 1200px) {
  .plan-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1600px;
    margin: 0 auto;
  }
}
.tabs {display:flex;justify-content:center;gap:1rem;margin-bottom:2rem;}
.tab-link {background:none;border:2px solid var(--gold);color:var(--light);padding:0.5rem 1rem;cursor:pointer;border-radius:4px;transition:background .3s;}
.tab-link.active,.tab-link:hover {background:var(--gold);color:#000;}
.tab-content {display:none;}
.tab-content.active {display:block;}
.plan-card {background:#111;padding:1.5rem;border-radius:12px;position:relative;box-shadow:0 8px 32px rgba(0,0,0,.3);transition:all .3s ease;border: 1px solid #333;}
.plan-card:hover {transform:translateY(-8px);box-shadow:0 16px 48px rgba(0,0,0,.4);}
.plan-card ul {list-style:none;padding:0;margin:1rem 0;text-align:left;}
.plan-card li {margin-bottom:.75rem;padding-left: 0.5rem;font-size: 0.9rem;}
.check {color:var(--gold);margin-right:.5rem;font-weight: bold;}
.check.highlight {color: #ffc107; font-weight: bold;}
.highlight {color: #ffc107;}
.preco {font-weight:bold;margin:0.5rem 0 1rem;font-size: 1.3rem;}
.desconto {color:var(--gold);font-weight:600;margin-top:-0.5rem;margin-bottom:0.5rem;font-size: 0.85rem;}
.badge {position:absolute;top:-10px;left:50%;transform:translateX(-50%);background:var(--gold);color:#000;padding:.25rem .5rem;border-radius:4px;font-size:.75rem;font-weight:bold;z-index:3;}

.free-plan {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  color: #333;
}

.free-plan .check {
  color: #28a745;
}

.free-plan h3 {
  color: #333;
}

.free-plan .preco {
  color: #6c757d;
}

.popular {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
  position: relative;
  transform: scale(1.015);
  z-index: 1;
}

.popular::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.4), rgba(255, 237, 78, 0.5), rgba(255, 215, 0, 0.4));
  border-radius: 14px;
  z-index: -1;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

.popular:hover {
  box-shadow: 0 16px 48px rgba(255, 215, 0, 0.35);
  transform: scale(1.025);
}

.popular .btn-plan {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  transform: scale(1.05);
  position: relative;
  z-index: 2;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
}

.trust-text {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
  max-width: 120px;
  line-height: 1.3;
  text-align: center;
}

.trust-text div {
  margin-bottom: 0.2rem;
}

.comparacao details {background:var(--gray);padding:1rem;border-radius:8px;}
.comparacao summary {cursor:pointer;font-weight:600; overflow: auto;}
.plan-table {width:100%;border-collapse:collapse;margin-top:1rem;}
.plan-table th,.plan-table td {border:1px solid #ccc;padding:.5rem;text-align:center;}

.pricing-table {width:100%;border-collapse:collapse;margin-top:1rem;}
.pricing-table th,.pricing-table td {border:1px solid #ccc;padding:.5rem;text-align:center;}
@media (max-width:600px){
  .pricing-table thead{display:none;}
  .pricing-table,.pricing-table tbody,.pricing-table tr,.pricing-table td{display:block;width:100%;}
  .pricing-table tr{margin-bottom:1rem;border:1px solid #ccc;border-radius:6px;}
  }
  .pricing-table td{text-align:right;padding-left:50%;position:relative;}
  .pricing-table td::before{content:attr(data-label);position:absolute;left:0;width:50%;padding-left:.5rem;font-weight:bold;text-align:left;}

.depoimentos {background:var(--light);padding:4rem 0;text-align:center;}
.carousel {display:flex;overflow:hidden;position:relative;}
.depoimento {min-width:100%;opacity:0;transition:opacity .6s ease;}
.depoimento.ativo {opacity:1;}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffc107;
}

.stat-label {
  color: #666;
  font-weight: 500;
}

.faq {background:var(--gray);padding:4rem 0;}
.accordion .item {border-bottom:1px solid #ddd;}
.question {background:none;border:none;width:100%;text-align:left;padding:1rem;font-weight:600;cursor:pointer;position:relative;}
.question::after {content:'+';position:absolute;right:1rem;transition:transform .3s ease;}
.item.open .question::after {transform:rotate(45deg);} 
.answer {max-height:0;overflow:hidden;padding:0 1rem;color:#333;transition:max-height .3s ease;padding-left:1rem;}
.item.open .answer {max-height:200px;padding-bottom:1rem;}

.cta-final {background:var(--dark);color:var(--light);text-align:center;padding:3rem 0;}
.cta-final h2 {margin-bottom:2rem;}
.cta-final .btn-primary {
  font-size: 1.2rem;
  padding: 1.25rem 2.5rem;
}

.cta-content {
  background: var(--primary-gradient);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  margin: 2rem 0;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.cta-feature {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.cta-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-button-container {
  margin: 2rem 0;
}

.cta-button {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  background: #ffc107;
  color: #333;
  border: none;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4);
}

.cta-footer {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.garantia {
  background: #f8f9fa;
  padding: 3rem 0;
}

.garantia-header {
  text-align: center;
  margin-bottom: 3rem;
}

.garantia-header h2 {
  color: #333;
  margin-bottom: 1rem;
}

.garantia-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.garantia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.garantia-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.garantia-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.garantia-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.garantia-card p {
  color: #666;
}

.footer {background:var(--dark);color:#ccc;padding:2rem 0;font-size:.75rem;}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}
.footer a {color:var(--gold);text-decoration:none;}
.links {list-style:none;padding:0;display:flex;flex-direction:column;gap:.5rem;}
footer {margin-top:auto;}

@media (max-width:768px){
  .menu-toggle{display:block;color:var(--dark);}
  .nav ul{display:none;flex-direction:column;position:absolute;right:0;top:100%;background:var(--light);padding:1rem;box-shadow:0 4px 10px rgba(0,0,0,.1);}
  .nav.open ul{display:flex;}
  
  .benefit-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .benefit-icon {
    width: 56px;
    height: 56px;
  }
  
  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .trust-badges {
    gap: 2rem;
  }
  
  .trust-text {
    max-width: 100px;
    font-size: 0.8rem;
  }
  
  .trust-icon {
    width: 40px;
    height: 40px;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
  }
  
  .garantia-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width:768px) and (max-width:1200px){
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
  }
}

@media (min-width:1200px){
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }
  
  .plan-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
  }
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.download-btn.google-play {
  background: #000;
  color: #fff;
  border: 2px solid transparent;
}

.download-btn.apple-store {
  background: #fff;
  color: #000;
  opacity: 0.8;
  cursor: not-allowed;
  border: 2px solid #e0e0e0;
}

.download-btn.google-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border-color: #333;
}

.download-btn.apple-store:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.download-label {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1;
  letter-spacing: 0.5px;
}

.download-store {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.download-btn svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

/* Footer download buttons */
.footer-download {
  margin: 2rem 0 1rem;
  text-align: center;
}

.footer-download h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-download .download-buttons {
  margin: 1rem 0;
}

.footer-download .download-btn {
  min-width: 160px;
  padding: 0.75rem 1.25rem;
}

.footer-download .download-btn svg {
  width: 24px;
  height: 24px;
}

.footer-download .download-store {
  font-size: 0.95rem;
}

.footer-download .download-label {
  font-size: 0.6rem;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
  
  .download-btn {
    min-width: 220px;
    padding: 1rem 1.5rem;
  }
  
  .footer-download .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer-download .download-btn {
    min-width: 140px;
    padding: 0.625rem 1rem;
  }
  
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-download {
    order: -1;
  }
  
  .btn-primary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  .cta-final .btn-primary {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
  }
}

/* Estilos para limitações do plano free */
.limitation {
  background-color: rgba(239, 68, 68, 0.1);
  border-radius: 4px;
  padding: 4px 8px;
  margin: 4px 0;
}

.limitation .check {
  color: #ef4444 !important;
}

/* Melhorias no hero section */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-btn {
  font-size: 1.2rem;
  width: 50%;
  text-align: center;
  
  padding: 1rem 2.5rem;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
  justify-content: flex-start;
}

.hero-trust p {
  margin: 0;
  color: var(--light);
}

.hero-social {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: inline-block;
  margin-top: 1rem;
}

.social-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--light);
}

.social-subtitle {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
  color: var(--light);
}

/* Melhorias responsivas */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
  }
  
  .hero-social {
    padding: 0.75rem 1rem;
  }
}

/* Estilos para o link do plano flexível */
.flexible-plan-link {
  margin: 2rem 0;
  padding: 1rem;
}

.flexible-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid transparent;
}

.flexible-link:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* Ajustar grid para 4 colunas novamente */
@media (min-width: 1200px) {
  .plan-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
  }
}

/* Estilos para detalhes das limitações */
.limitation-detail {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.25rem;
  margin-left: 1.5rem;
  font-style: italic;
  opacity: 0.8;
}

/* Estilos para o CTA final */
.final-cta {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 217, 0, 0.237);
  border-radius: 12px;
  border: 1px solid rgba(255, 217, 0, 0.233);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.cta-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--light);
  opacity: 0.9;
  font-weight: 500;
}
