:root {
    --bg: #0b0b0f;
    --card: #111118;
    --primary: #0A1AFF;
    --accent: #2f5bff;
    --text: #ffffff;
    --muted: #9ca3af;
    --border: rgba(255,255,255,0.08);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: radial-gradient(circle at top, #0f172a, #000);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* BG BLUR EFFECT */
.bg-blur {
    position: fixed;
    width: 500px;
    height: 500px;
    background: #0A1AFF;
    filter: blur(200px);
    opacity: 0.2;
    top: -100px;
    left: -100px;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* BOTÃO PREMIUM */
.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #0A1AFF, #3b5bff);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(10,26,255,0.4);
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 15px 40px rgba(10,26,255,0.7);
}

.btn-cta-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
}

/* HERO PREMIUM */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    text-align: center;
    background: radial-gradient(circle at top, #0a0f2c, #000);
}

/* TEXTO ANIMADO */
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #0A1AFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    margin: 20px 0;
    color: var(--muted);
    font-size: 1.1rem;
}

/* GLASS EFFECT */
.glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}

/* SECTION */
.container {
    padding: 100px 8%;
    max-width: 1200px;
    margin: 0 auto;
}

/* TITULO */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.section-title span {
    color: var(--primary);
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD PREMIUM */
.benefit-card {
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
    text-align: center;
    background: var(--card); /* fallback se .glass não estiver presente */
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Text Content Area for SEO */
.seo-content {
  background: var(--card);
  padding: 3rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.seo-content h2, .seo-content h3 {
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.seo-content p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.seo-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: disc;
  color: var(--muted);
}

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

.review-card {
    padding: 20px;
    transition: 0.3s;
    background: var(--card); /* fallback */
    border-radius: 10px;
    border: 1px solid var(--border);
}

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

.review-stars {
  color: #FFD700;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: bold;
  margin-top: 1rem;
  color: var(--primary);
}

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

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

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

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}

/* Blog Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(10,26,255,0.3);
}

.blog-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(10,26,255,0.2), rgba(0,0,0,0.8));
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 0 15px var(--primary);
}

.blog-content {
  padding: 2rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #fff;
}

.blog-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-content .read-more {
  display: inline-block;
  color: var(--primary);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.blog-content .read-more:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--primary);
}

/* FOOTER */
footer {
    background: #000;
    padding: 40px 8%;
    border-top: 1px solid var(--border);
}

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

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 6rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* ANIMAÇÕES */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}
