/* =========================================================
   VARIABLES & SETUP
========================================================= */
:root {
    /* Colors */
    --bg-main: #FFFFFF;
    --bg-alt: #FAFAFB;
    --text-primary: #2b2b2b;
    --text-secondary: #6B7280;
    --text-italic: #8280ff;
    --text-muted: #9CA3AF;
    --border-color: #E5E7EB;

    --accent: #8280ff;
    --accent-blue: #8280ff;
    --dark-surface: #111827;
    --dark-surface-2: #1F2937;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-snappy: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-snappy);
}

img,
svg {
    max-width: 100%;
    display: block;
}

/* =========================================================
   UTILITIES & TYPOGRAPHY
========================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 800px;
}

.bg-light {
    background-color: var(--bg-alt);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 32px;
}

h1 {
    font-size: clamp(3rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    height: 8rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

i {
    /* for italics in headings */
    font-style: italic;
    color: var(--text-italic);
}

p {
    color: var(--text-secondary);
}

section {
    padding: 5rem 0;
}

.section-title {
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-title p {
    font-size: 1.125rem;
}

.section-title p strong {
    color: var(--accent);
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-snappy);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-main);
}

.btn-primary:hover {
    background-color: #6b69e6;
    transform: translateY(-1px);
}

.btn-cta-light {
    background: white;
    color: var(--dark-surface);
}

.btn-cta-light:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.cta-with-icon {
    gap: 10px;
}

.cta-with-icon .cta-svg {
    flex-shrink: 0;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: var(--bg-alt);
}

.btn-text {
    font-weight: 500;
    margin-right: 24px;
}

.btn-text:hover {
    color: var(--text-secondary);
}

/* =========================================================
   ANIMATIONS (Intersection Observer Targets)
========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* =========================================================
   COMPONENTS
========================================================= */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* Hero */
.hero {
    padding-top: 160px;
    text-align: center;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1.25rem;
}

.hero-badge {
    margin-bottom: 28px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.hero-badge strong {
    color: var(--accent);
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
}

/* Logo Ticker */
.logos-section {
    border-bottom: 1px solid var(--border-color);
    padding: 48px 0;
}

.logos-intro {
    text-align: center;
    margin: 2rem 2rem 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.logos-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    font-size: 1.25rem;
    font-weight: 600;
}

.opacity-muted {
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.3s;
}

.opacity-muted:hover {
    opacity: 0.8;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform var(--transition-snappy), box-shadow var(--transition-snappy);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-mockup {
    height: 160px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-content h3 {
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.9375rem;
}

.feature-content code,
.faq-content code {
    font-size: 0.8em;
    background: var(--bg-alt);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: ui-monospace, monospace;
}

.features-cta {
    margin-top: 48px;
}

/* Feature Abstract Mockups */
.mini-card.dark {
    background: linear-gradient(135deg, #4891ff 0%, #ff642b 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.mini-card.dark strong {
    font-size: 1.5rem;
}

.mini-card.dark span {
    font-size: 0.75rem;
    color: #f1f1f1;
}

.mockup-2{
    padding: 10px;
}

.document-mockup {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* efeito de folha */
.document-mockup::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    border-radius: 12px;
    z-index: -1;
}

.doc-line {
    height: 14px;
    background: #f1f3f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    font-size: 12px;
    color: #333;
}

.doc-line.title {
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    color: #111;
    padding: 0;
    margin-bottom: .5rem;
}

.doc-line.small {
    width: 70%;
}

.doc-variable {
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    color: white;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

.mockup-3 {
    flex-direction: column;
    gap: 10px;
}

.search-pill {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    font-size: 0.8rem;
    color: #999;
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-bubble {
    background: var(--accent-blue);
    color: white;
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    font-size: 0.8rem;
    max-width: 80%;
}

.ab-card {
    width: 56px;
    height: 44px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    box-shadow: var(--shadow-sm);
    position: absolute;
    padding: 4px;
}

.ab-card.a {
    transform: translateX(-28px) rotate(-5deg);
    z-index: 2;
    border: 2px solid var(--text-primary);
}

.ab-card.b {
    transform: translateX(18px) rotate(5deg);
    opacity: 0.5;
}

.mockup-5 {
    position: relative;
}

.grid-lines {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.3;
}

/* Pricing */
.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.pricing-toggle {
    background: var(--bg-alt);
    padding: 6px;
    border-radius: var(--radius-full);
    display: inline-flex;
    position: relative;
    border: 1px solid var(--border-color);
}

.toggle-btn {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 10px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.toggle-btn.active {
    color: var(--text-primary);
}

.toggle-btn span {
    font-size: 0.75rem;
    background: #E1F0FF;
    color: var(--accent-blue);
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 600;
}

.toggle-bg {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100px;
    /* modified by JS */
    height: calc(100% - 12px);
    background: var(--bg-main);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-snappy), width var(--transition-snappy);
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15),
                0 12px 24px -10px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlight {
    background: var(--dark-surface);
    color: white;
    transform: scale(1.03);
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 1px rgba(130, 128, 255, 0.2), var(--shadow-lg);
}

.pricing-card.highlight .btn-primary {
    background: var(--accent);
    color: white;
}

.pricing-card.highlight p,
.pricing-card.highlight .feature-list {
    color: #A1A1AA;
}

.tier-label {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.tier-price {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    color: inherit;
    display: flex;
    align-items: end;
}

.price-cycle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 10px;
    margin-left: 4px;
}

.pricing-card.highlight .price-cycle {
    color: #A1A1AA;
}

.tier-desc {
    font-size: 0.9375rem;
    margin-bottom: 32px;
    min-height: 44px;
}

.feature-list {
    margin-top: 32px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.feature-list span {
    display: block;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-card.highlight .feature-list span {
    color: white;
}

.feature-list ul {
    list-style: none;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-list li::before {
    content: '✓';
    color: var(--text-primary);
    font-weight: bold;
}

.pricing-card.highlight li::before {
    color: white;
}

/* Free plan card acima dos 3 */
.pricing-card-free{
  grid-column: 1 / -1;           /* ocupa as 3 colunas */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(130,128,255,.10), rgba(130,128,255,.04));
}

.pricing-card-free .tier-desc{
  margin-bottom: 14px;
  min-height: unset;
}

.free-left{
  flex: 1;
  min-width: 0;
}

.free-right{
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.free-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.free-badge{
  font-size: .8125rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.free-note{
  font-size: .85rem;
  color: var(--text-secondary);
}

.pricing-card-free .tier-price{
    margin-bottom: 16px;
}

.pricing-card-free .price-cycle{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Responsivo */
@media (max-width: 980px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }

  .pricing-card-free{
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .free-right{
    width: 100%;
  }
}

/* Quote Section */
.quote-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 24px;
}

.quote-text {
    max-width: 800px;
    margin: 0 auto 24px auto;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
}

.quote-author {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Testimonials Grid */
.testimo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimo-card {
    background: var(--bg-main);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.testimo-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimo-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.testimo-header div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testimo-header strong {
    font-size: 0.9375rem;
}

.testimo-header span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.logo-icon {
    width: 20px;
    height: 20px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-family: sans-serif;
}

.testimo-card p {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

/* FAQ Accordion */
.faq-list {
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-header {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
}

.faq-header .icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.faq-item.active .faq-header .icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content {
    padding-bottom: 24px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Bottom CTA */
.cta-banner {
    background: var(--dark-surface);
    border-radius: var(--radius-lg);
    color: white;
    display: flex;
    overflow: hidden;
    min-height: 300px;
}

.cta-content {
    padding: 64px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-content h2 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
    margin: 0;
}

.cta-graphics {
    flex: 1;
    background: #1F2937;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.cta-chart-bars {
    display: flex;
    gap: 12px;
    height: 80%;
    width: 100%;
    align-items: flex-end;
}

.cta-chart-bars .bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 4px 0 0;
}

.cta-chart-bars .bar:nth-child(1) {
    height: 40%;
}

.cta-chart-bars .bar:nth-child(2) {
    height: 70%;
}

.cta-chart-bars .bar:nth-child(3) {
    height: 100%;
    background: var(--accent-blue);
}

.cta-chart-bars .bar:nth-child(4) {
    height: 60%;
}

.cta-chart-bars .bar:nth-child(5) {
    height: 90%;
    background: var(--accent-blue);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-col strong {
    font-size: 0.9375rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.link-col a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.link-col a:hover {
    color: var(--text-primary);
}

.footer-cta {
    display: flex;
    align-items: center;
}

.footer-cta .btn {
    white-space: nowrap;
}

/* =========================================================
   MEDIA QUERIES
========================================================= */
@media (max-width: 992px) {
    .section-padding {
        padding: 64px 0;
    }

    .features-grid,
    .pricing-grid,
    .testimo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.highlight {
        transform: none;
    }

    .cta-banner {
        flex-direction: column;
        min-height: auto;
    }

    .cta-graphics {
        min-height: 180px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .cta-content h2 {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
    }

    .footer-container {
        gap: 32px;
    }

    .footer-cta {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    h1 {
        margin-top: 5rem;
        height: 15rem;
    }

    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 48px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .navbar {
        font-size: .9rem;    
    }

    .navbar .btn-primary {
        font-size: .7rem !important;    
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.9375rem;
    }

    .dashboard-mockup {
        margin-left: -20px;
        margin-right: -20px;
        max-width: none;
        border-radius: var(--radius-md);
    }

    .mockup-body {
        height: 380px;
        min-height: 320px;
    }

    .mockup-main {
        padding: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card strong {
        font-size: 1.25rem;
    }

    .mockup-sidebar {
        display: none;
    }

    .feature-mockup {
        height: 140px;
    }

    .mockup-5 {
        min-height: 140px;
    }

    .ab-card.a {
        transform: translateX(-20px) rotate(-5deg);
    }

    .ab-card.b {
        transform: translateX(12px) rotate(5deg);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }

    .features-grid,
    .testimo-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        margin-bottom: 48px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .ab-card {
        width: 48px;
        height: 38px;
        font-size: 0.6rem;
    }

    .ab-card.a {
        transform: translateX(-18px) rotate(-5deg);
    }

    .ab-card.b {
        transform: translateX(10px) rotate(5deg);
    }

    .search-pill {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .chat-bubble {
        font-size: 0.75rem;
        max-width: 90%;
    }

    .cta-content {
        padding: 32px 20px;
    }

    .cta-content h2 {
        font-size: 1.35rem;
    }

    .logos-container {
        font-size: 1rem;
        gap: 20px;
    }

    .tier-price {
        font-size: 2.5rem;
    }

    .faq-header {
        font-size: 1rem;
        padding: 20px 0;
    }

    .quote-text {
        font-size: 1.2rem;
    }
}