@import url('https://api.fontshare.com/v2/css?f[]=clash-display@600&display=swap" rel="stylesheet');
/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    --noar-blue: #1E90FF;
    --noar-dark: #0F1419;
    --noar-gray: #1A1F2E;
    --text-gray: #9CA3AF;
    --border-gray: #374151;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--noar-dark);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gray);
    transition: background-color 0.3s ease;
}

header.scrolled {
    background: var(--noar-dark);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    color: var(--noar-dark);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.btn-primary {
    background: var(--noar-blue);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1976D2;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding-bottom: 16px;
}

.mobile-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.whatsapp-button {
  position: fixed;
  bottom: 100px; /* fica acima do Crisp (ajuste se necessário) */
  right: 20px;
  z-index: 9999;
}

.whatsapp-button img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--noar-dark) 0%, var(--noar-gray) 50%, var(--noar-dark) 100%);
}

.particles {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.particle {
    position: absolute;
    background: var(--noar-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.particle:nth-child(1) {
    top: 25%;
    left: 25%;
    width: 8px;
    height: 8px;
}

.particle:nth-child(2) {
    top: 33%;
    right: 33%;
    width: 4px;
    height: 4px;
    background: white;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 25%;
    left: 33%;
    width: 6px;
    height: 6px;
    animation-delay: 0.5s;
}

.particle:nth-child(4) {
    top: 50%;
    right: 25%;
    width: 4px;
    height: 4px;
    background: white;
    animation-delay: 0.7s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

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

.hero-text {
    text-align: left;
}

.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 88px;
  line-height: 1.1;
  word-break: break-word;
  text-wrap: balance; /* Equilibra a quebra de linha se suportado */
}

.hero-title .highlight {
    color: var(--noar-blue);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-hero {
    font-family: 'Clash Display', sans-serif;
    background: var(--noar-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.hero-devices {
    position: relative;
}

.device {
    background: #111827;
    border-radius: 12px;
    padding: 16px;
    position: absolute;
    transition: transform 0.3s ease;
}

.device:hover {
    transform: rotate(0deg) !important;
}

.device-laptop {
    background: #111827;
    border-radius: 8px;
    padding: 24px;
    transform: rotate(12deg);
    top: 0;
    left: 0;
    z-index: 3;
}

.device-phone {
    background: #111827;
    border-radius: 8px;
    padding: 8px;
    width: 80px;
    transform: rotate(-12deg);
    top: 32px;
    right: -16px;
    z-index: 2;
}

.device-tablet {
    background: #111827;
    border-radius: 8px;
    padding: 12px;
    transform: rotate(6deg);
    bottom: -16px;
    right: 32px;
    z-index: 1;
}

.device-content {
    background: var(--noar-dark);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
}

.device-phone .device-content {
    padding: 12px;
}

.device-tablet .device-content {
    padding: 16px;
}

.device-icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 4px;
    margin: 0 auto 8px;
}

.device-phone .device-icon {
    width: 12px;
    height: 12px;
    margin-bottom: 4px;
}

.device-tablet .device-icon {
    width: 16px;
    height: 16px;
    margin-bottom: 4px;
}

.device-brand {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.device-phone .device-brand {
    font-size: 10px;
    margin-bottom: 4px;
}

.device-tablet .device-brand {
    font-size: 12px;
    margin-bottom: 4px;
}

.device-text {
    font-size: 10px;
    color: var(--text-gray);
}

.device-text strong {
    color: white;
}

/* Stats Section */
.stats {
    padding: 64px 0;
    background: rgba(26, 31, 46, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--noar-blue);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-gray);
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
  font-size: 60px;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--noar-gray);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(26, 31, 46, 0.8);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--noar-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0;
    background: rgba(26, 31, 46, 0.3);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--noar-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-description {
    color: var(--text-gray);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--noar-gray);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border-gray);
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--noar-blue);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--noar-blue);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--noar-blue);
    margin-bottom: 24px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.plan-features li::before {
    content: "✓";
    color: var(--noar-blue);
    font-weight: bold;
    margin-right: 8px;
}

.btn-plan {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.btn-plan.primary {
    background: var(--noar-blue);
    color: white;
}

.btn-plan.primary:hover {
    background: #1976D2;
}

.btn-plan.secondary {
    background: transparent;
    color: var(--noar-blue);
    border: 1px solid var(--noar-blue);
}

.btn-plan.secondary:hover {
    background: var(--noar-blue);
    color: white;
}

/* Footer */
footer {
    background: var(--noar-gray);
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-gray);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 32px;
    text-align: center;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
.hero-title {
    text-align: center;
  font-size: 48px;

}
.hero-subtitle {
    font-size: 15px;
}
.hero-title .highlight {
    color: var(--noar-blue);
}
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
      .hero {
    justify-content: flex-start; /* começa de cima */
    padding-top: 40px; /* controla a distância do topo */
  }

    .container {
        padding: 0 16px;
    }
      .hero-title {
    text-align: center;
    font-size: 55px;
    margin-top: -35px; /* sobe o texto */
  }
    

    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
.feedbacks {
  padding: 60px 0;
  background: #0F1419;
  text-align: center;
}

.feedbacks .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #fff, #0F1419);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.card {
  background: #fff;
  color: #000;
  border-radius: 15px;
  padding: 20px;
  min-width: 320px;
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.4rem;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.card-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.card-footer .info {
  font-size: 0.85rem;
  text-align: left;
}

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

.btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #555;
  cursor: pointer;
  transition: background 0.3s;
}

.btn.active {
  background: #0F1419;
}
/* ===== FAQ ===== */
.faq {
  padding: 70px 20px;
  background: #0F1419;
  color: #fff;
}

.faq .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(90deg, #fff, #00020a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #0F1419;
  border: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

