/* BLOCKS CSS */

/* --- Bloco 1: Hero --- */
.hero {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: var(--color-bg-white);
    border-bottom: 1px solid #EAEAEA;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-img {
    max-width: 350px;
    width: 100%;
    margin-bottom: 2.5rem;
    animation-delay: 0.1s;
}

.hero-headline {
    font-size: 1.95rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: var(--color-text-dark);
    line-height: 1.4;
    animation-delay: 0.2s;
}

.hero-headline strong {
    font-weight: 800;
    color: var(--color-primary-dark);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    animation-delay: 0.3s;
}

.feature-pill {
    background: rgba(11, 19, 43, 0.05); /* very light primary blue */
    border: 1px solid rgba(11, 19, 43, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.feature-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    border-color: rgba(11, 19, 43, 0.3);
}

.pill-icon {
    font-size: 1.25rem;
    transform: translateY(-1px);
}

/* Before After Container */
.hero-image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
    animation-delay: 0.4s;
}

.before-after-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFF;
}

.base-image {
    width: 100%;
    display: block;
}

.overlay-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.center-transition-arrow {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.left-overlay {
    top: 5%;
    left: 5%;
    max-width: 42%;
    align-items: center;
}

.left-overlay .speech-bubble {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    line-height: 1.35;
}

.right-overlay {
    bottom: 35%;
    right: 5%;
    align-items: center;
}

.speech-bubble {
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    color: #FFF;
    font-size: 1.1rem;
    margin-top: 0.75rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

.alert-bubble {
    background: rgba(239, 68, 68, 0.95);
    border: 2px solid #fca5a5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.success-bubble {
    background: rgba(16, 185, 129, 0.95);
    border: 2px solid #6ee7b7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.pix-icon { color: #FFF; font-size: 1.5rem; }

@media (max-width: 768px) {
    .hero { padding-top: 2rem !important; padding-bottom: 3rem !important; }
    .hero-headline { font-size: 1.35rem; margin-bottom: 1.5rem; }
    .hero-pills { flex-direction: column; align-items: stretch; gap: 0.75rem; margin-bottom: 2rem; }
    .feature-pill { justify-content: center; font-size: 0.8rem; white-space: normal; height: auto; padding: 0.6rem 0.85rem; font-weight: 500;}
    .pill-icon { font-size: 0.9rem; }
    .left-overlay { top: 2%; left: -2%; transform: scale(0.75); transform-origin: top left; }
    .right-overlay { bottom: 2%; right: -2%; top: auto; transform: scale(0.75); transform-origin: bottom right; }
    .center-transition-arrow { display: none; } 
    .speech-bubble { padding: 0.5rem 0.85rem; font-size: 0.95rem; }
}

/* Utilitários Extras */
.section-title { font-size: 2.25rem; margin-bottom: 3rem; font-weight: 700; line-height: 1.2; }
.underline-gold { border-bottom: 2px solid var(--color-accent); padding-bottom: 2px;}

/* --- Bloco 2: Depoimentos --- */
.testimonials { background-color: var(--color-bg-white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { background: #FFF; border: 1px solid #EAEAEA; border-radius: 12px; padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.testimonial-img-placeholder { width: 80px; height: 80px; border-radius: 50%; background-color: #E0E0E0; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: #666; border: 2px solid var(--color-accent); }
.testimonial-text { font-style: italic; color: #555; margin-bottom: 1.5rem; font-size: 1.05rem; }
.testimonial-author { font-weight: 700; color: var(--color-primary); margin-top: auto; }

/* --- Bloco 3: Dor Latente --- */
.pain-points { background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)); padding-bottom: 6rem; }

.pain-image-wrapper {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    border-radius: 16px;
}

.pain-base-image {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    max-height: 750px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.pain-cards-overlay {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 2;
    max-width: 380px;
}

.pain-card {
    background: #B91C1C;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #FFF;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.pain-card:hover { transform: translateX(10px); }

.pain-card p { margin: 0; line-height: 1.4; font-size: 1.15rem; color: #FFF; }
.pain-card strong { color: var(--color-accent); font-weight: 800; }

@media (max-width: 768px) {
    .pain-points { padding-bottom: 3rem !important; }
    .pain-cards-overlay {
        position: relative;
        top: auto;
        left: 0;
        transform: translateY(-20px);
        margin: 0 auto;
        max-width: 100%;
        padding: 0 0.5rem;
        gap: 0.75rem;
    }
    .pain-card {
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
    }
    .pain-card:hover { transform: none; }
}

/* --- Bloco 4: Transição --- */
.transition-content { max-width: 1000px; margin: 0 auto; }
.why-failing { margin-bottom: 5rem; }

.reasons-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: #FFF;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.reason-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background-color: #EAEAEA;
}

.reason-card-img.placeholder-img {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--color-accent);
}
.reason-card-img.placeholder-img svg {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}
.reason-card:hover .placeholder-img svg {
    transform: scale(1.1);
}

.reason-card-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    margin: 1.5rem 0 0.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.reason-card-text {
    font-size: 1.05rem;
    color: #444;
    padding: 0 1.25rem;
    line-height: 1.5;
    font-weight: 500;
}

.the-turn {
    background: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 4rem 3rem;
    border-radius: 16px;
    border: 2px solid var(--color-accent);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}
@media (max-width: 768px) {
    .the-turn { flex-direction: column; text-align: center; padding: 2rem 1.25rem; gap: 1rem; }
    .the-turn > div:first-child { font-size: 5rem !important; margin-right: 0 !important; margin-bottom: 0.5rem; }
    .gold-text { font-size: 1.6rem !important; margin-bottom: 1rem; line-height: 1.3; }
}

.gold-text { color: var(--color-accent); font-size: 2.25rem; margin-bottom: 1.5rem; margin-top: 0; }
.big-question { font-size: 1.5rem; line-height: 1.5; margin-bottom: 2rem; }
.final-statement { font-size: 1.25rem; margin: 0; }

/* --- Bloco 5: Passo a Passo --- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 4rem; }
.step-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 175, 55, 0.3); padding: 2.5rem 1.5rem; border-radius: 12px; text-align: center; position: relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-5px); border-color: var(--color-accent); box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(212, 175, 55, 0.1); }
.step-number { position: absolute; top: -25px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark)); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; border: 4px solid var(--color-primary); box-shadow: var(--shadow-sm); }
.step-title { color: var(--color-accent); margin: 1.5rem 0 1rem; font-size: 1.25rem; }
.step-card p { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; margin: 0; }

@media (max-width: 768px) {
    .why-failing { margin-bottom: 3rem; }
    .reasons-cards-grid { gap: 1.25rem; margin-top: 2rem; }
    .reason-card { padding-bottom: 1.5rem; }
    .reason-card-img { height: 140px; }
    .reason-card-number { font-size: 2.5rem; margin: 1rem 0 0.5rem; }
    
    .steps-grid { gap: 1.5rem; margin-top: 2.5rem; }
    .step-card { padding: 2rem 1.25rem 1.5rem; }
    .step-number { width: 40px; height: 40px; font-size: 1.2rem; top: -20px; }
}

/* --- Bloco 6: O que você vai receber --- */
.deliverables-grid { display: flex; flex-direction: column; gap: 2rem; margin: 3rem auto 0; max-width: 800px; }
.deliverable-card { background: #FFF; border: 1px solid #EAEAEA; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.deliverable-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.main-deliverable { display: grid; grid-template-columns: 1fr 1fr; align-items: center; border: 2px solid var(--color-accent); box-shadow: var(--shadow-glow); }
.deliverable-img-placeholder { background: #EEE; display: flex; align-items: center; justify-content: center; color: #888; font-weight: 700; width: 100%; min-height: 200px; border-bottom: 1px solid #EAEAEA; }
.main-img { min-height: 350px; border-bottom: none; border-right: 1px solid #EAEAEA; }
.deliverable-img-placeholder.tall { min-height: 280px; }
.deliverable-img-placeholder.mockup-pc { min-height: 240px; background: #D9D9D9; }
.deliverable-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.deliverable-content h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--color-primary); }
.deliverable-content p { color: #555; margin-bottom: 1.5rem; flex-grow: 1; }
.bonus-tag { font-weight: 800; font-size: 0.875rem; color: var(--color-accent-dark); text-transform: uppercase; margin-bottom: 0 !important; }

@media (max-width: 768px) {
    .deliverables-grid { gap: 1.25rem; margin-top: 2rem; }
    .main-deliverable { display: flex !important; flex-direction: column !important; }
    .main-img { min-height: auto; border-right: none; border-bottom: 1px solid #EAEAEA; }
    .deliverable-content { padding: 1.25rem; }
    .deliverable-content h3 { font-size: 1.15rem; }
}

/* --- Bloco 7: Para quem serve --- */
.audience-layout { display: grid; grid-template-columns: 1fr 1.2fr; max-width: 1000px; margin: 0 auto; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; backdrop-filter: blur(10px); box-shadow: var(--shadow-lg); }
.audience-image-side { background: linear-gradient(135deg, #1E293B, #0F172A); display: flex; align-items: center; justify-content: center; min-height: 400px; border-right: 1px solid rgba(255,255,255,0.05); }
.audience-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.audience-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 0; }
.audience-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.125rem; color: var(--color-text-light); line-height: 1.4; }
.check-gold { color: var(--color-accent); font-weight: bold; font-size: 1.25rem; display: inline-block; transform: translateY(-2px); flex-shrink: 0; }

@media (max-width: 768px) {
    .audience-layout { grid-template-columns: 1fr; border-radius: 12px; }
    .audience-image-side { min-height: 200px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .audience-content { padding: 1.75rem 1.25rem; }
    .audience-content h2 { font-size: 1.5rem !important; text-align: left !important; }
    .audience-list li { font-size: 1rem; align-items: flex-start; gap: 0.75rem; }
    .check-gold { font-size: 1.15rem; transform: translateY(0); }
}

/* --- Bloco 8 e 9: Preço e Oferta --- */
.offer { padding-top: 6rem; padding-bottom: 6rem; }
.offer-pre-headline { font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; color: #444; }
.offer-anchor { font-size: 1.25rem; color: #666; margin-bottom: 0.5rem; }
.offer-bridge { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 3rem; }
.price-box { border: 2px solid var(--color-accent); border-radius: 20px; padding: 4rem 2rem; background: #FFF; box-shadow: var(--shadow-lg), var(--shadow-glow); max-width: 600px; margin: 0 auto; }
.price-content { display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; }
.price-installments { font-size: 2rem; color: var(--color-primary); line-height: 1; }
.price-installments strong { font-size: 4rem; font-weight: 800; }
.price-or { font-size: 1.25rem; color: #666; margin-top: 0.5rem; }
.btn-large { font-size: 1.5rem; padding: 1.25rem 3rem; width: 100%; border-radius: 50px; text-align: center;}
.cta-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); } 70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } }
.guarantees { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.badge { background: #F0F0F0; color: #333; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.875rem; font-weight: 600; }

/* --- Bloco 10: Conversa Séria --- */
.options-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto 4rem; }
.option-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; overflow: hidden; text-align: left; }
.option-header { padding: 1rem 1.5rem; font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 0.75rem; color: #FFF; }
.bg-danger { background-color: #ef4444; }
.bg-success { background-color: #10b981; }
.option-body { padding: 2rem; display: flex; flex-direction: column; justify-content: start; gap: 1rem; color: var(--color-text-light); font-size: 1.125rem; height: 100%;}
.text-danger { color: #fca5a5; }
.border-accent { border: 2px solid var(--color-accent); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
.serious-conclusion { max-width: 700px; margin: 0 auto; color: var(--color-text-light); font-size: 1.25rem; }

/* --- Bloco 11: Autoridade --- */
.authority { background-color: var(--color-bg-white); }
.authority-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; max-width: 900px; margin: 0 auto; }
.placeholder-avatar.xl { width: 100%; max-width: 400px; height: 400px; border-radius: 16px; margin: 0 auto; }
.authority-content p { font-size: 1.125rem; color: #555; margin-bottom: 1.5rem; }

@media (max-width: 768px) {
    .authority-grid { grid-template-columns: 1fr !important; gap: 2rem !important; text-align: center !important; }
    .authority-content { text-align: center !important; }
    .authority-content h2 { text-align: center !important; font-size: 1.6rem !important; }
    .authority-content h3 { font-size: 2.2rem !important; margin-bottom: 0.5rem; }
    .authority-content .gold-line { margin: 1rem auto 1.5rem !important; }
    .authority-content p { font-size: 1.05rem !important; }
}

/* --- Bloco 12: Valor 2 --- */
.dark-theme { background: transparent; border-color: rgba(212, 175, 55, 0.5); }
.dark-theme .price-or { color: #A0AEC0; }
.offer-2 .price-box { margin-top: 3rem; }

/* --- Bloco 13: FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid #EAEAEA; }
.faq-question { width: 100%; background: none; border: none; padding: 1.5rem 0; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--color-primary); display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; }
.faq-icon { font-size: 1.5rem; color: var(--color-accent); transition: var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 1.5rem; color: #555; line-height: 1.6; margin: 0; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* --- Bloco 14: Rodapé --- */
.footer { background-color: #0E1A33; color: var(--color-text-light); padding: 4rem 0 2rem; }
.footer-logo { margin-bottom: 2rem; opacity: 0.9; }
.logo-main-small { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; }
.logo-bottom-small { font-size: 0.875rem; color: var(--color-accent); font-weight: 700; background: none; }
.footer-contact { margin-bottom: 3rem; font-size: 1rem; }
.footer-contact a { color: var(--color-accent); font-weight: 600; text-decoration: underline; }
.footer-disclaimer { font-size: 0.75rem; color: #8892B0; max-width: 800px; margin: 0 auto 3rem; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.875rem; display: flex; flex-direction: column; gap: 0.5rem; color: #8892B0; }

/* --- EXTRA MOBILE RESPONSIVE FIXES FOR RECAP & CHECKOUT --- */
@media (max-width: 768px) {
    /* Base Resets */
    .section { padding: 3rem 0 !important; }
    .container { padding: 0 16px !important; }
    .section-title { font-size: 1.6rem !important; line-height: 1.3 !important; }
    .btn { width: 100% !important; text-align: center !important; padding: 1rem !important; font-size: 1.1rem !important; }
    
    /* Recap List */
    .recap-receipt { padding: 1.5rem 1rem !important; border-radius: 12px; }
    .recap-receipt ul { gap: 1.25rem !important; }
    .recap-receipt li { flex-direction: column !important; align-items: flex-start !important; gap: 0.5rem !important; }
    .recap-receipt li > div:first-child { align-items: flex-start !important; width: 100%; gap: 0.75rem !important; }
    .recap-receipt li > div:first-child span:not(:first-child) { font-size: 1rem !important; line-height: 1.4; }
    .recap-receipt li > div:nth-child(2) { display: none !important; }
    .recap-receipt li > strong { align-self: flex-start; padding-left: 2.5rem; font-size: 1.1rem !important; }
    .recap-receipt h3 { font-size: 1.25rem !important; display: flex; flex-direction: column; gap: 0.25rem; margin-top: 1.5rem !important; }
    .recap-receipt h3 strong { margin-left: 0 !important; font-size: 1.5rem !important; }
    
    /* Price Box */
    .price-box { padding: 1.5rem 1rem !important; max-width: 100% !important; margin-top: 1.5rem !important; }
    .price-installments { flex-direction: column; gap: 0; align-items: center !important; }
    .price-installments span { font-size: 1.1rem; }
    .price-installments strong { font-size: 3rem !important; letter-spacing: -1px !important; }
    .price-or { font-size: 1rem !important; margin-bottom: 0.5rem; }
    .guarantees { flex-direction: column; align-items: center; gap: 0.5rem; }
    .badge { width: 100%; text-align: center; }

    /* Testimonials */
    .testimonial-grid { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; }
    .testimonial-card { max-width: 100% !important; width: 100% !important; margin: 0 auto; }

    /* Option Cards */
    .options-wrapper { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
    
    /* Global inline texts */
    p[style*="font-size: 1.25rem"], p[style*="font-size: 1.35rem"], p[style*="font-size: 1.5rem"], p[style*="font-size: 1.15rem"] {
        font-size: 1.05rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.5 !important;
    }
    
    .footer-logo img { max-width: 180px !important; }
}
