/* ==========================================================================
   COMO COMPRAR - WICCA STYLES (LIGHT & SERENE PALETTE)
   ========================================================================== */

.como-comprar-page {
    padding-bottom: 80px;
    background-color: #f8fafc;
    color: #1e293b;
    font-family: inherit;
}

/* Hero Section: Light, soft, elegant lavender-tinted background */
.cc-hero {
    background: linear-gradient(135deg, #F8F4FC 0%, #F0E8F7 100%) !important;
    color: #2A1740 !important;
    padding: 65px 0 60px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #E4D7F5 !important;
}

.cc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EFE7F8 !important;
    color: #6A3A9B !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid #D8C5EE !important;
}

.cc-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #2A1740 !important;
}

.cc-hero p {
    font-size: 17px;
    color: #5C4B73 !important;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Warnings / Notice Alert Box */
.cc-alerts-container {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.cc-alerts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .cc-alerts-grid {
        grid-template-columns: 1fr;
    }
}

.cc-alert-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
    border-left: 5px solid #6A3A9B;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cc-alert-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.cc-alert-card.alert-frete {
    border-left-color: #3b82f6;
    background: #f8fbff;
}

.cc-alert-card.alert-precos {
    border-left-color: #6A3A9B;
    background: #faf8fd;
}

.cc-alert-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.cc-alert-card.alert-frete .cc-alert-icon {
    color: #2563eb;
}

.cc-alert-card.alert-precos .cc-alert-icon {
    color: #6A3A9B;
}

.cc-alert-content h3 {
    margin: 0 0 8px;
    font-size: 16.5px;
    font-weight: 700;
    color: #1e293b;
}

.cc-alert-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

/* Steps Section */
.cc-steps-section {
    padding: 65px 0 40px;
}

.cc-section-header {
    text-align: center;
    margin-bottom: 45px;
}

.cc-section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #2A1740;
    margin-bottom: 10px;
}

.cc-section-header p {
    font-size: 16px;
    color: #5C4B73;
    margin: 0;
}

.cc-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .cc-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cc-steps-grid {
        grid-template-columns: 1fr;
    }
}

.cc-step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #EFE8F8;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.cc-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(106, 58, 155, 0.08);
    border-color: #D8C5EE;
}

.cc-step-num {
    width: 36px;
    height: 36px;
    background: #EFE7F8 !important;
    color: #6A3A9B !important;
    font-size: 15px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 1.5px solid #D8C5EE;
}

.cc-step-icon {
    width: 64px;
    height: 64px;
    background: #F8F4FC;
    color: #6A3A9B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    border: 1px solid #E4D7F5;
}

.cc-step-card:nth-child(2) .cc-step-icon {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.cc-step-card:nth-child(3) .cc-step-icon {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
}

.cc-step-card:nth-child(4) .cc-step-icon {
    background: #F8F4FC;
    color: #6A3A9B;
    border-color: #E4D7F5;
}

.cc-step-card h3 {
    font-size: 17.5px;
    font-weight: 700;
    color: #2A1740;
    margin: 0 0 10px;
}

.cc-step-card p {
    font-size: 13.5px;
    color: #5C4B73;
    line-height: 1.55;
    margin: 0;
}

/* FAQ / Details Section */
.cc-faq-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #EFE8F8;
    margin-top: 30px;
}

.cc-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .cc-faq-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.cc-faq-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2A1740;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-faq-item h4 i {
    color: #6A3A9B;
}

.cc-faq-item p {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* Bottom CTA Banner: Light soft strip */
.cc-cta-box {
    margin-top: 50px;
    background: linear-gradient(135deg, #F8F4FC 0%, #F0E8F7 100%) !important;
    border: 1.5px solid #DCCAEF !important;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #2A1740 !important;
    box-shadow: 0 10px 30px rgba(106, 58, 155, 0.06);
}

.cc-cta-box h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #2A1740 !important;
}

.cc-cta-box p {
    font-size: 15px;
    color: #5C4B73 !important;
    margin: 0 0 24px;
}

.cc-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cc-btn-primary {
    background: #6A3A9B;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(106, 58, 155, 0.25);
}

.cc-btn-primary:hover {
    background: #542d7c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(106, 58, 155, 0.35);
}

.cc-btn-secondary {
    background: #25D366;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.2s ease;
}

.cc-btn-secondary:hover {
    background: #1ebc59;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
