/* FuScore Custom Styles */
:root {
    --primary-color: #10ff5c;
    --primary-hover: #0ee651;
    --dark-bg: #0a0b1e;
    --card-bg: #1a1b2e;
    --text-light: #ffffff;
    --text-muted: #a8b2d1;
    --border-color: #2a2b3e;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 255, 92, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 255, 92, 0.4);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-light);
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Header Styles */
.enigma-header {
    background-color: rgba(10, 11, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: bold;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.login-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816, 255, 92, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1b2e 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16, 255, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-mockup {
    text-align: center;
    position: relative;
}

.hero-mockup img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(16, 255, 92, 0.2));
}

/* Mockup iPhone - tombado */
.iphone-mockup {
  width: 270px;
  height: 540px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28), 0 1.5px 0 #bbb inset;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  border: 6px solid #e5e7eb;
  transform: rotate(-18deg);
  transition: transform 0.4s cubic-bezier(.23,1.01,.32,1);
}
.iphone-mockup:hover {
  transform: rotate(-10deg) scale(1.04);
}
.iphone-speaker {
  width: 60px;
  height: 7px;
  background: #bbb;
  border-radius: 4px;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}
.iphone-screen {
  width: 234px;
  height: 468px;
  background: #000;
  border-radius: 28px;
  margin-top: 36px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0002 inset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.iphone-btn {
  width: 38px;
  height: 8px;
  background: #bbb;
  border-radius: 6px;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}
@media (max-width: 400px) {
  .iphone-mockup { width: 180px; height: 360px; }
  .iphone-screen { width: 156px; height: 288px; margin-top: 24px; }
}
/* Mockup MacBook - maior */
.macbook-mockup {
  width: 700px;
  max-width: 100%;
  background: #e5e7eb;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  position: relative;
  padding-bottom: 38px;
  margin-bottom: 1.5rem;
}
.macbook-bar {
  width: 100%;
  height: 18px;
  background: #22242a;
  border-radius: 18px 18px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.macbook-bar::after {
  content: '';
  display: block;
  width: 38px;
  height: 6px;
  background: #444;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  opacity: 0.5;
}
.macbook-screen {
  width: 100%;
  height: 400px;
  background: #111;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.macbook-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
}
.macbook-base {
  width: 80%;
  height: 22px;
  background: #bbb;
  border-radius: 0 0 18px 18px;
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 1;
  box-shadow: 0 2px 8px #0002;
}
@media (max-width: 900px) {
  .macbook-mockup { width: 100%; }
  .macbook-screen { height: 220px; }
}
/* Mockup MacBook */
.macbook-mockup {
  width: 520px;
  max-width: 100%;
  background: #e5e7eb;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 1.5rem;
}
.macbook-bar {
  width: 100%;
  height: 18px;
  background: #22242a;
  border-radius: 18px 18px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.macbook-bar::after {
  content: '';
  display: block;
  width: 38px;
  height: 6px;
  background: #444;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  opacity: 0.5;
}
.macbook-screen {
  width: 100%;
  height: 300px;
  background: #111;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.macbook-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
}
.macbook-base {
  width: 80%;
  height: 18px;
  background: #bbb;
  border-radius: 0 0 18px 18px;
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 1;
  box-shadow: 0 2px 8px #0002;
}
@media (max-width: 600px) {
  .macbook-mockup { width: 100%; min-width: 0; }
  .macbook-screen { height: 180px; }
}

/* Sections */
.features-section {
    background-color: var(--card-bg);
}

.why-choose-section {
    background-color: var(--dark-bg);
}

.pricing-section {
    background-color: var(--card-bg);
}

.contact-section {
    background-color: var(--dark-bg);
}

.final-cta-section {
    background-color: var(--card-bg);
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 255, 92, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(16, 255, 92, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: rgba(16, 255, 92, 0.2);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Benefit Cards */
.benefit-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 255, 92, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(16, 255, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: rgba(16, 255, 92, 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 255, 92, 0.1);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(16, 255, 92, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.pricing-price .period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--primary-color);
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(16, 255, 92, 0.1);
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Contact Cards */
.contact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 255, 92, 0.1);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(16, 255, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: rgba(16, 255, 92, 0.2);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Final CTA */
.cta-buttons {
    margin-bottom: 1.5rem;
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .benefit-card,
    .pricing-card,
    .contact-card {
        margin-bottom: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img.loading {
    opacity: 0.7;
    filter: blur(1px);
}

img.loaded {
    opacity: 1;
    filter: none;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #181926;
  color: #fff;
  font-size: 1.5rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social:hover .footer-social-icon {
  background: var(--primary-color);
  color: #10111e;
}
@media (max-width: 767px) {
  .footer-section .logo-container {
    margin-bottom: 1rem;
  }
  .footer-section .row > div {
    margin-bottom: 1.5rem;
  }
}
/* Footer Responsivo e Ícones Aprimorados */
@media (max-width: 991px) {
  .footer-section .row > div,
  .footer-section .logo-container,
  .footer-section .footer-link,
  .footer-section .footer-social,
  .footer-section .footer-desc,
  .footer-section h5,
  .footer-section ul,
  .footer-section .brand-text {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-section .footer-social {
    display: inline-block !important;
    margin-bottom: 0.5rem;
  }
  .footer-section ul {
    padding-left: 0 !important;
  }
  .footer-section .footer-desc {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .footer-section .row {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-section .logo-container {
    margin-bottom: 1.5rem;
  }
  .footer-section .footer-social {
    margin-bottom: 0.5rem;
  }
}
.footer-section .footer-social-icon {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.7rem;
  background: #181926;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-section .footer-social:hover .footer-social-icon {
  background: var(--primary-color);
  color: #10111e;
  transform: scale(1.12);
}
.footer-section .footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-section .footer-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.footer-section .logo-icon {
  font-size: 2rem !important;
  width: 2.8rem !important;
  height: 2.8rem !important;
}
/* Aprimorar ícones de destaque */
.feature-icon i, .benefit-icon i, .contact-icon i {
  font-size: 2.2rem !important;
  color: var(--primary-color) !important;
  text-shadow: 0 2px 8px rgba(16,255,92,0.15);
  transition: color 0.2s, text-shadow 0.2s;
}
.feature-card:hover .feature-icon i, .benefit-card:hover .benefit-icon i, .contact-card:hover .contact-icon i {
  color: #fff !important;
  text-shadow: 0 4px 16px rgba(16,255,92,0.25);
}
.destaque-img {
  border-radius: 1.5rem !important;
  box-shadow: 0 8px 32px rgba(16,255,92,0.10), 0 2px 8px rgba(0,0,0,0.10);
  transition: transform 0.3s cubic-bezier(.23,1.01,.32,1), box-shadow 0.3s;
}
.destaque-img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(16,255,92,0.18), 0 4px 16px rgba(0,0,0,0.13);
}
/* Barra promocional */
.promo-bar {
  position: sticky;
  top: 0;
  z-index: 1050;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px #10ff5c22;
  letter-spacing: 0.5px;
}
/* Barra promocional some ao rolar */
.promo-bar { transition: opacity 0.3s, visibility 0.3s; }

/* Escudos fictícios na prova social */
.prova-social-section img {
  filter: grayscale(0.1) brightness(1);
  opacity: 0.92;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 2px 8px #0001;
  margin: 0 0.2rem;
}

/* Avatares depoimentos */
.testimonials-section .rounded-circle {
  border: 2px solid #10ff5c;
  box-shadow: 0 2px 8px #10ff5c22;
}

/* CTA fixo mobile */
.cta-fixo-mobile {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1051;
  border-radius: 0;
  box-shadow: 0 -2px 16px #10ff5c22;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 0.5rem;
  display: none;
}
@media (max-width: 991px) {
  .cta-fixo-mobile { display: block; }
}
/* Estrelas depoimentos */
.testimonials-section .fa-star {
  color: #ffc107 !important;
  font-size: 1.1rem;
  margin-right: 1px;
}
/* Prova social logos */
.prova-social-section img {
  filter: grayscale(0.2) brightness(0.95);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 2px 8px #0001;
}
.prova-social-section img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}
/* FAQ */
.faq-section .accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  color: #10ff5c;
  background: #181926;
  border: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.faq-section .accordion-button:not(.collapsed) {
  color: #fff;
  background: #10ff5c;
}
.faq-section .accordion-item {
  border: none;
  margin-bottom: 0.7rem;
}
.faq-section .accordion-body {
  color: #e5e7eb;
  background: #23243a;
  border-radius: 0 0 0.7rem 0.7rem;
}
/* Selos de segurança */
.pricing-section .badge {
  font-size: 1.1rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px #0001;
  letter-spacing: 0.5px;
}
/* Selos de segurança rodapé */
.footer-section .badge {
  background: #10ff5c !important;
  color: #10111e !important;
  font-weight: 600;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px #10ff5c22;
  margin: 0 0.2rem;
}

/* Animação destaque CTA */
.destaque-cta, .cta-fixo-mobile {
  animation: destaquePulse 2.2s infinite;
}
@keyframes destaquePulse {
  0%, 100% { box-shadow: 0 0 0 0 #10ff5c44; }
  50% { box-shadow: 0 0 0 12px #10ff5c22; }
}
.destaque-cta:hover, .cta-fixo-mobile:hover {
  animation: none;
  transform: scale(1.04);
}
/* Responsividade FAQ e depoimentos */
@media (max-width: 767px) {
  .testimonials-section .testimonial-card { margin-bottom: 1.5rem; }
  .faq-section .accordion-button { font-size: 1rem; }
}

/* Barra promocional abaixo do menu fixo */
.promo-bar {
  margin-top: 56px;
}

/* Botão Ver Planos verde padrão */
.btn-success, .destaque-cta, .cta-fixo-mobile {
  background: #10ff5c !important;
  border-color: #10ff5c !important;
  color: #10111e !important;
  font-weight: bold;
}
.btn-success:hover, .destaque-cta:hover, .cta-fixo-mobile:hover {
  background: #0be14b !important;
  border-color: #0be14b !important;
  color: #10111e !important;
}

/* Números da prova social em branco e com sombra */
.prova-social-section .display-5 {
  color: #fff !important;
  text-shadow: 0 2px 8px #0008;
}

/* Imagem do dashboard menor */
.benefits-section img {
  max-width: 420px;
}

/* Selos de segurança rodapé verdes */
.footer-section .badge {
  background: #10ff5c !important;
  color: #10111e !important;
}

/* Barra promocional fixa acima do menu */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1060;
  min-height: 32px;
  font-size: 0.98rem;
  line-height: 1.2;
  padding: 0.3rem 0.5rem;
}

/* Navbar abaixo da barra promocional */
.navbar.fixed-top {
  top: 32px;
}

/* FAQ sem background extra */
.faq-section {
  background: none !important;
}

/* Remover estilos da prova social */
.prova-social-section, .prova-social-section * {
  display: none !important;
}

/* Wrapper fixo para barra promocional + navbar */
.promo-navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1060;
  box-shadow: 0 2px 12px #0002;
}
.promo-bar {
  min-height: 32px;
  font-size: 0.98rem;
  line-height: 1.2;
  padding: 0.3rem 0.5rem;
  background: #10ff5c;
  color: #10111e;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.navbar {
  margin-bottom: 0;
  border-radius: 0;
}
/* Espaço compensador para topo fixo */
body > .promo-navbar-wrapper + div[style*="height"] {
  height: 88px !important;
}
@media (max-width: 991px) {
  body > .promo-navbar-wrapper + div[style*="height"] {
    height: 104px !important;
  }
}
@media (max-width: 400px) {
  .hero-title { font-size: 1.3rem; }
  .section-title { font-size: 1.1rem; }
  .section-description { font-size: 0.95rem; }
  .hero-section { padding: 80px 0 40px; }
  .hero-mockup img { max-width: 220px; }
  .feature-card, .benefit-card, .pricing-card, .contact-card { padding: 1rem; }
  .pricing-header h3 { font-size: 1.1rem; }
  .pricing-price .price { font-size: 1.5rem; }
  .btn, .btn-lg, .btn-primary, .btn-success, .btn-outline-primary, .btn-outline-light { min-height: 44px; font-size: 1rem; }
  .footer-section .logo-container { gap: 0.3rem; }
  .footer-section .brand-text { font-size: 1.1rem; }
}
@media (max-width: 576px) {
  .hero-section { padding: 60px 0 30px; }
  .hero-title { font-size: 1.5rem; }
  .section-title { font-size: 1.2rem; }
  .section-description { font-size: 1rem; }
  .feature-card, .benefit-card, .pricing-card, .contact-card { padding: 1.2rem; }
  .pricing-header h3 { font-size: 1.2rem; }
  .pricing-price .price { font-size: 1.2rem; }
  .btn, .btn-lg, .btn-primary, .btn-success, .btn-outline-primary, .btn-outline-light { min-height: 44px; font-size: 1rem; }
  .footer-section .logo-container { gap: 0.4rem; }
  .footer-section .brand-text { font-size: 1.2rem; }
}
/* Imagens e gráficos responsivos */
img, .destaque-img, .hero-mockup img, .macbook-mockup, .macbook-screen, .iphone-mockup, .iphone-screen {
  max-width: 100% !important;
  height: auto !important;
}
.chart-container, .macbook-screen, .iphone-screen {
  overflow-x: auto;
}
/* Botões e campos mobile */
.btn, .btn-lg, .btn-primary, .btn-success, .btn-outline-primary, .btn-outline-light, .form-control, .form-select {
  min-height: 44px;
  font-size: 1rem;
}
/* Ajuste de ícones e espaçamentos */
.feature-icon i, .benefit-icon i, .contact-icon i {
  font-size: 1.3rem !important;
}
.footer-section .footer-social-icon {
  font-size: 1.2rem !important;
  width: 2.2rem !important;
  height: 2.2rem !important;
}