/* 
   LANDING PAGE STYLE - DOCEPREÇO
   Estilo: Dark Sweet Premium (Midnight Plum, Neon Pink & Off-White)
*/

:root {
    --bg-dark: #0F090B;
    --bg-card: rgba(30, 18, 22, 0.6);
    --border-color: rgba(255, 142, 158, 0.15);
    --primary: #FF8E9E;
    --primary-glow: rgba(255, 142, 158, 0.45);
    --primary-dark: #E06C7C;
    --accent-gold: #FFD460;
    --accent-gold-glow: rgba(255, 212, 96, 0.3);
    --accent-green: #2EC4B6;
    --text-light: #FCEFF2;
    --text-muted: #B3A2A5;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glow: 0 0 25px var(--primary-glow);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho de fundo */
.glow-effect {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 142, 158, 0.12) 0%, rgba(15, 9, 11, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Logo */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 50px;
}

.brand-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

/* Layout Grid da Hero */
.hero-section .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

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

.badge-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 212, 96, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 142, 158, 0.2);
}

.hero-content .subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-content .subtitle strong {
    color: var(--text-light);
}

/* Área de Call to Action */
.cta-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    padding: 18px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 450px;
}

.btn-cta span {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-cta small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 4px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Efeito de pulso discreto */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 142, 158, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 142, 158, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 142, 158, 0); }
}

.cta-guarantees {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
}

.cta-guarantees span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-guarantees i {
    color: var(--primary);
}

/* Mockup de Celular via CSS */
.hero-mockup-container {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    width: 260px;
    height: 520px;
    background-color: #1A1A1A;
    border: 6px solid #2B2B2B;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 142, 158, 0.1);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.screen-content {
    background-color: #FAFAFB;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    color: #3D2C2E;
    display: flex;
    flex-direction: column;
}

.mock-header {
    background-color: #FFFFFF;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #F1EAEC;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
}

.mock-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-welcome {
    margin-bottom: 4px;
}

.mock-welcome h4 {
    font-size: 12px;
    font-weight: 700;
}

.mock-welcome p {
    font-size: 9px;
    color: #8C787A;
}

.mock-card {
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    font-size: 9px;
}

.mock-card.pink {
    background-color: #FFF0F2;
    border: 1px solid rgba(255, 142, 158, 0.2);
}

.mock-card.green {
    background-color: #E6F8F0;
    border: 1px solid rgba(46, 196, 182, 0.2);
}

.mock-card strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 2px;
}

.mock-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    padding: 6px 0;
    border-bottom: 1px dashed #F1EAEC;
}

/* ==================== SEÇÃO DA DOR ==================== */
.pain-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 45px;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.pain-card:hover {
    border-color: rgba(255, 142, 158, 0.3);
    transform: translateY(-2px);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.card-icon.error {
    background-color: rgba(230, 57, 70, 0.1);
    color: #E63946;
}

.card-icon.alert {
    background-color: rgba(255, 212, 96, 0.1);
    color: var(--accent-gold);
}

.pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pain-conclusion {
    background-color: rgba(255, 212, 96, 0.05);
    border: 1px solid rgba(255, 212, 96, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pain-conclusion p {
    font-size: 13px;
    color: #FFE49E;
}

/* ==================== BENEFÍCIOS ==================== */
.benefits-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(255, 142, 158, 0.3);
    transform: translateY(-4px);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--bg-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px var(--primary-glow));
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== TABELA COMPARATIVA ==================== */
.versus-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--bg-card);
    font-size: 14px;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: rgba(30, 18, 22, 0.9);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.comparison-table th.highlight {
    color: var(--primary);
    background-color: rgba(255, 142, 158, 0.05);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table td.highlight {
    background-color: rgba(255, 142, 158, 0.02);
    border-left: 2px solid rgba(255, 142, 158, 0.2);
    border-right: 2px solid rgba(255, 142, 158, 0.2);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.yes {
    color: var(--text-light);
}

.comparison-table td.yes i {
    color: var(--accent-green);
    margin-right: 8px;
}

.comparison-table td.no {
    color: var(--text-muted);
}

.comparison-table td.no i {
    color: #E63946;
    margin-right: 8px;
}

/* ==================== OFERTA E PREÇO ==================== */
.pricing-section {
    padding: 80px 0;
    position: relative;
}

.pricing-card {
    max-width: 620px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 18, 22, 0.8) 0%, rgba(15, 9, 11, 0.9) 100%);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 142, 158, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.card-tag {
    background-color: rgba(255, 142, 158, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.pricing-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-card .desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.price-box {
    margin-bottom: 35px;
}

.old-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.new-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.new-price .currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
    margin-right: 4px;
}

.new-price .value {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}

.installments {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 24px;
    cursor: pointer;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.guarantee-box {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.guarantee-icon {
    font-size: 32px;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 6px var(--accent-gold-glow));
}

.guarantee-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.guarantee-box p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== PERGUNTAS FREQUENTES (FAQ) ==================== */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
}

.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Classe ativa gerada por JS */
.faq-item.active .faq-answer {
    max-height: 200px;
    transition: max-height 0.5s ease-in-out;
}

.faq-item.active {
    border-color: rgba(255, 142, 158, 0.3);
}

/* ==================== FOOTER ==================== */
.app-footer {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background-color: #080506;
}

.app-footer p {
    font-size: 12px;
    color: var(--text-muted);
}

.app-footer .disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.15);
    max-width: 800px;
    margin: 20px auto 0 auto;
    line-height: 1.5;
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 100%;
    }
    
    .cta-guarantees {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 40px 20px;
    }
    
    .new-price .value {
        font-size: 54px;
    }
}

/* ==================== BÔNUS EXCLUSIVOS ==================== */
.bonuses-section {
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.bonus-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.bonus-tag {
    display: inline-block;
    background-color: rgba(255, 142, 158, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.bonus-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.bonus-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.bonus-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bonus-value {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    padding-top: 12px;
}

.bonus-value strong {
    color: var(--accent-green);
}

/* Responsividade para Bônus */
@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mockup de Aplicativo Dashboard (DocePreço Real layout) */
.mock-app-screen {
    font-family: 'Outfit', sans-serif !important;
    background-color: #FAFAFB !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mock-app-header {
    background-color: #FFFFFF;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #F1EAEC;
    height: 44px;
    flex-shrink: 0;
}

.mock-app-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-app-logo-bg {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-color: #FFF0F2;
    color: #FF8E9E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mock-app-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mock-app-brand-text h5 {
    font-size: 11px;
    font-weight: 700;
    margin: 0;
    color: #3D2C2E;
}

.mock-app-brand-text span {
    font-size: 7px;
    color: #8C787A;
    margin: 0;
}

.mock-app-header-icons {
    display: flex;
    gap: 8px;
    color: #8C787A;
    font-size: 11px;
}

.mock-app-body {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    overflow: hidden;
}

.mock-app-welcome {
    margin-bottom: 2px;
    text-align: left;
}

.mock-app-welcome h4 {
    font-size: 12px;
    font-weight: 700;
    color: #3D2C2E;
    margin: 0 0 1px 0;
}

.mock-app-welcome p {
    font-size: 8px;
    color: #8C787A;
    margin: 0;
    line-height: 1.2;
}

.mock-app-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mock-stat-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 6px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid #F5EDED;
}

.mock-stat-card i {
    font-size: 10px;
    margin-bottom: 3px;
}

.mock-stat-card .stat-num {
    font-size: 9px;
    font-weight: 700;
    color: #3D2C2E;
}

.mock-stat-card .stat-lbl {
    font-size: 5.5px;
    color: #8C787A;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1px;
}

.text-pink { color: #FF8E9E; }
.text-gold { color: #D4AF37; }
.text-blue { color: #2EC4B6; }

.mock-action-card {
    background-color: #FFF0F2;
    border: 1px solid rgba(255, 142, 158, 0.25);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    text-align: left;
}

.action-icon-bg {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #FF8E9E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    flex-shrink: 0;
}

.action-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.action-text h6 {
    font-size: 10px;
    font-weight: 700;
    margin: 0;
    color: #3D2C2E;
}

.action-text p {
    font-size: 7px;
    color: #8C787A;
    margin: 0;
    line-height: 1.15;
}

.action-arrow {
    font-size: 8px;
    color: #FF8E9E;
}

.mock-section-title {
    font-size: 7px;
    font-weight: 700;
    color: #5C4B4D;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #F1EAEC;
    padding-bottom: 2px;
    margin-top: 2px;
    text-align: left;
}

.mock-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mock-tool-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #F5EDED;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tool-icon-bg {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-bottom: 4px;
}

.bg-gold-light { background-color: #FCF7E5; }
.bg-blue-light { background-color: #E6F8F0; }
.bg-pink-light { background-color: #FFF0F2; }

.mock-tool-card h6 {
    font-size: 8px;
    font-weight: 700;
    margin: 0 0 1px 0;
    color: #3D2C2E;
}

.mock-tool-card p {
    font-size: 6px;
    color: #8C787A;
    margin: 0;
    line-height: 1.15;
}

.mock-tip-card {
    background-color: #FFFDF0;
    border-left: 3px solid #D4AF37;
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
}

.mock-tip-card i {
    font-size: 9px;
    margin-top: 1px;
}

.mock-tip-card p {
    font-size: 7px;
    color: #6E5F46;
    margin: 0;
    line-height: 1.3;
}

.mock-tab-bar {
    background-color: #FFFFFF;
    border-top: 1px solid #F1EAEC;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    padding: 0 4px;
    margin-top: auto;
    flex-shrink: 0;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    color: #A19193;
    flex: 1;
}

.tab-item i {
    font-size: 10px;
}

.tab-item span {
    font-size: 5.5px;
    font-weight: 600;
}

.tab-item.active {
    color: #FF8E9E;
}

.tab-calc-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #FF8E9E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 3px 8px rgba(255, 142, 158, 0.4);
    margin-top: -12px;
    z-index: 2;
}
