/**
 * Elmo Soluções Integradas - Estilos Customizados
 * Versão: 1.0
 */

:root {
    --elmo-primary: #1e3a8a;
    --elmo-secondary: #3b82f6;
    --elmo-accent: #fbbf24;
    --elmo-success: #10b981;
    --elmo-danger: #dc2626;
    --elmo-dark: #0f172a;
}

/* HEADER */
.elmo-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* HERO */
.elmo-hero {
    background: linear-gradient(135deg, var(--elmo-primary), var(--elmo-secondary));
    color: white;
    padding: 60px 20px 48px;
    text-align: center;
}

/* PROCESSO (3 ETAPAS) */
.processo-step {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.processo-step:hover {
    border-color: var(--elmo-secondary);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--elmo-primary), var(--elmo-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 16px;
}

/* PRODUTOS */
.elmo-product-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.elmo-product-card:hover {
    transform: translateY(-6px);
    border-color: var(--elmo-secondary);
}

.variation-btn {
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
}

.variation-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

.variation-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.product-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.product-cta:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* FAQ */
.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 20px 20px;
}

/* WHATSAPP */
.elmo-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* MOBILE */
@media (max-width: 768px) {
    .elmo-hero h1 {
        font-size: 32px;
    }
    .processo-step {
        padding: 20px 12px;
    }
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #e2e8f0;
}

.footer h3,
.footer h4 {
    color: white;
}

.footer a {
    color: #cbd5e1;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    background: #0a0f1a;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
}

/* CHECKOUT CUSTOMIZAÇÕES */
.woocommerce-checkout .wc_payment_method label {
    font-weight: bold;
}

.woocommerce-checkout .payment_box {
    background: #f8fafc !important;
    padding: 20px !important;
}

.woocommerce-checkout .payment_box p {
    font-weight: bold !important;
    color: #0f172a !important;
}

.woocommerce-checkout #place_order {
    background: #2563eb !important;
    font-size: 16px !important;
    padding: 16px 32px !important;
}

.woocommerce-checkout #place_order:hover {
    background: #1e40af !important;
}