/* ===============================================
   RECUPERAR XML - TEMA AZUL CLARO (NFCE STYLE)
   =============================================== */

/* Container Base */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Variáveis para Recuperar XML - Paleta Azul Claro */
:root {
    --recuperar-xml-primary: #60a5fa;
    --recuperar-xml-primary-light: #93c5fd;
    --recuperar-xml-secondary: #3b82f6;
    --recuperar-xml-accent: #38bdf8;
    --recuperar-xml-dark: #1e40af;
    --recuperar-xml-text-gray: #475569;
    --recuperar-xml-text-medium: #64748b;
    --recuperar-xml-bg-light: #f8fafc;
    --recuperar-xml-bg-alt: #eff6ff;
    --recuperar-xml-white: #ffffff;
    --recuperar-xml-shadow: rgba(96, 165, 250, 0.1);
    --recuperar-xml-green: #10b981;
    --recuperar-xml-success: #059669;
    --recuperar-xml-warning: #f59e0b;
    --recuperar-xml-info: #0ea5e9;
}

/* Hero Section - Download XML */
.hero-download-xml {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #38bdf8 100%);
    position: relative;
    overflow: hidden;
}

.hero-download-xml::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-download-xml-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-download-xml-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-download-xml-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-primary {
    color: #e0f2fe;
}

.highlight-secondary {
    color: #b3e5fc;
}

.highlight-accent {
    color: #ffffff;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats-preview {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.hero-cta .btn {
    margin-bottom: 1rem;
}

.hero-cta-benefits {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-benefits .check {
    color: #52e6c9;
    margin-right: 0.5rem;
}

/* Visual Container - Download XML */
.visual-download-xml-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.automation-dashboard-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 3;
}

/* Dashboard Header */
.dashboard-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--recuperar-xml-text-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--recuperar-xml-text-medium);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--recuperar-xml-green);
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: var(--recuperar-xml-green);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Dashboard Content */
.dashboard-content {
    padding: 1.5rem;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-card .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--recuperar-xml-primary);
    color: white;
    border-radius: 6px;
    font-size: 0.8rem;
}

.stat-card .stat-info {
    flex: 1;
}

.stat-card .stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--recuperar-xml-text-gray);
    line-height: 1;
}

.stat-card .stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--recuperar-xml-text-medium);
    margin-top: 0.25rem;
}

/* Automation Controls */
.automation-controls {
    margin-bottom: 1.5rem;
}

.control-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--recuperar-xml-text-gray);
    margin-bottom: 1rem;
}

.automation-toggles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toggle-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.toggle-item.active {
    background: #f0f9ff;
    border-color: var(--recuperar-xml-primary);
}

.toggle-switch {
    width: 36px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 10px;
    position: relative;
    cursor: default;
    transition: background 0.3s ease;
}

.toggle-switch.on {
    background: var(--recuperar-xml-green);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch.on .toggle-slider {
    transform: translateX(16px);
}

.toggle-info {
    flex: 1;
}

.toggle-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--recuperar-xml-text-gray);
    line-height: 1.2;
}

.toggle-desc {
    display: block;
    font-size: 0.7rem;
    color: var(--recuperar-xml-text-medium);
    margin-top: 0.125rem;
}

.toggle-status {
    color: var(--recuperar-xml-green);
    font-size: 0.8rem;
}

/* Live Activity */
.live-activity {
    margin-bottom: 1rem;
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.activity-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--recuperar-xml-text-gray);
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--recuperar-xml-green);
    font-weight: 600;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--recuperar-xml-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.activity-item.processing {
    background: #fef3c7;
    border-color: var(--recuperar-xml-warning);
}

.activity-item.completed {
    background: #f0f9ff;
    border-color: var(--recuperar-xml-primary);
}

.activity-item .activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.activity-item.processing .activity-icon {
    background: var(--recuperar-xml-warning);
    color: white;
}

.activity-item.completed .activity-icon {
    background: var(--recuperar-xml-primary);
    color: white;
}

.activity-content {
    flex: 1;
}

.activity-action {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--recuperar-xml-text-gray);
    line-height: 1.2;
}

.activity-desc {
    display: block;
    font-size: 0.7rem;
    color: var(--recuperar-xml-text-medium);
    margin-top: 0.125rem;
}

.activity-time {
    font-size: 0.7rem;
    color: var(--recuperar-xml-text-medium);
    font-weight: 500;
}

/* Floating Benefits */
.floating-benefit {
    position: absolute;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 220px;
    z-index: 4;
    animation: float 6s ease-in-out infinite;
}

.benefit-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.benefit-2 {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

.benefit-3 {
    bottom: 15%;
    right: -10%;
    animation-delay: 4s;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--recuperar-xml-primary);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    display: block;
    color: var(--recuperar-xml-text-gray);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.benefit-text span {
    display: block;
    color: var(--recuperar-xml-text-medium);
    font-size: 0.7rem;
    margin-top: 0.125rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-green {
    background: var(--recuperar-xml-green);
    color: white;
}

.btn-green:hover {
    background: var(--recuperar-xml-success);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.hero-cta-benefits .check {
    color: #52e6c9;
    margin-right: 0.5rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-download-xml-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .visual-download-xml-container {
        order: -1;
        max-width: 400px;
    }

    .floating-benefit {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-download-xml {
        padding: 6rem 0 4rem;
    }

    .hero-download-xml-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats-preview {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .stat-pill {
        min-width: 200px;
        justify-content: center;
    }

    .dashboard-content {
        padding: 1rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .automation-toggles {
        gap: 0.5rem;
    }

    .activity-feed {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-download-xml-content h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .visual-download-xml-container {
        max-width: 320px;
    }

    .dashboard-header {
        padding: 0.75rem 1rem;
    }

    .dashboard-title {
        font-size: 0.8rem;
    }

    .toggle-item {
        padding: 0.5rem;
    }

    .stat-card {
        padding: 0.75rem;
    }
}

/* ===============================================
   SEÇÕES DE CONTEÚDO DA PÁGINA
   =============================================== */

/* Layout Section Base */
.lp-section {
    padding: 5rem 0;
    position: relative;
    
}

.lp-section--alt {
    background: var(--recuperar-xml-bg-alt);
    position: relative;
    overflow: hidden;
}



/* Seção Introdução com background de lupa */
.lp-section--alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/background/fundo.png') no-repeat center left;
    background-size: 20%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.lp-section--alt .container {
    position: relative;
    z-index: 1;
}

/* Ocultar lupa em telas menores */
@media (max-width: 768px) {
    .lp-section--alt::before {
        display: none;
    }
}

.lp-section__narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.lp-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section__eyebrow {
    display: inline-block;
    background: var(--recuperar-xml-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.lp-section__title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--recuperar-xml-text-gray);
    margin-bottom: 1.5rem;
}

.lp-section__subtitle {
    font-size: 1.25rem;
    color: var(--recuperar-xml-text-medium);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.lp-section__cta {
    text-align: center;
    margin-top: 3rem;
}

/* Article Content */
.lp-article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.lp-article p {
    font-size: 1.1rem;
    color: var(--recuperar-xml-text-medium);
    margin-bottom: 1.5rem;
}

.lp-article strong {
    color: var(--recuperar-xml-text-gray);
    font-weight: 600;
}

/* Steps Section */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.lp-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--recuperar-xml-shadow);
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.lp-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.15);
}

.lp-step__number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--recuperar-xml-primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.lp-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--recuperar-xml-primary), var(--recuperar-xml-secondary));
    color: white;
    border-radius: 20px;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.lp-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--recuperar-xml-text-gray);
    margin-bottom: 1rem;
}

.lp-step p {
    color: var(--recuperar-xml-text-medium);
    line-height: 1.6;
}

/* Benefits Section */
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lp-benefit {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--recuperar-xml-shadow);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.lp-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.12);
}

.lp-benefit__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--recuperar-xml-primary);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.lp-benefit h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--recuperar-xml-text-gray);
    margin-bottom: 1rem;
}

.lp-benefit p {
    color: var(--recuperar-xml-text-medium);
    line-height: 1.6;
}

/* Features Grid */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lp-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--recuperar-xml-shadow);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.lp-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.12);
}

.lp-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--recuperar-xml-accent);
    color: white;
    border-radius: 10px;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.lp-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.lp-feature p {
    color: var(--recuperar-xml-text-medium);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px var(--recuperar-xml-shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--recuperar-xml-bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--recuperar-xml-text-gray);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--recuperar-xml-primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: var(--recuperar-xml-text-medium);
    line-height: 1.7;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botões Específicos da Página Recuperar XML */
.recuperar-xml-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--recuperar-xml-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.recuperar-xml-btn:hover {
    background: var(--recuperar-xml-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
    color: white;
    text-decoration: none;
}

.recuperar-xml-btn-green {
    background: linear-gradient(135deg, #2ed8b6, #25b894);
    box-shadow: 0 10px 30px rgba(46, 216, 182, 0.3);
}

.recuperar-xml-btn-green:hover {
    background: linear-gradient(135deg, #25b894, #2ed8b6);
    transform: translateY(-1px);
    box-shadow: 0 12px 34px rgba(46, 216, 182, 0.35);
}

.recuperar-xml-btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}



/* Classes de compatibilidade - remover botões genéricos */
/* Botões específicos têm prioridade sobre estilos globais */

/* Responsive Design para Seções */
@media (max-width: 1024px) {
    .lp-section {
        padding: 4rem 0;
    }

    .lp-section__title {
        font-size: 2.25rem;
    }

    .lp-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .lp-benefits {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .lp-feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding: 3rem 0;
    }

    .lp-section__header {
        margin-bottom: 3rem;
    }

    .lp-section__title {
        font-size: 1.8rem;
    }

    .lp-section__subtitle {
        font-size: 1.1rem;
    }

    .lp-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lp-step {
        padding: 2rem 1.5rem;
    }

    .lp-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lp-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lp-article p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lp-section {
        padding: 2.5rem 0;
    }

    .lp-section__title {
        font-size: 1.5rem;
    }

    .lp-section__subtitle {
        font-size: 1rem;
    }

    .lp-step {
        padding: 1.5rem 1rem;
    }

    .lp-step__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .lp-benefit, .lp-feature {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}