/* ==========================================================================
   Efeuno Custom Theme — Rediseno Visual 2026
   Scope: #wrapwrap (no afecta portal /my ni backend Odoo)
   ========================================================================== */

/* ---------- Variables ---------- */
#wrapwrap {
    --efeuno-dark: #0f172a;
    --efeuno-dark-light: #1e293b;
    --efeuno-green: #10b981;
    --efeuno-green-dark: #059669;
}

/* ---------- Glass Cards ---------- */
#wrapwrap .efeuno-glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}

#wrapwrap .efeuno-glass-card-dark {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Hover Effects ---------- */
#wrapwrap .efeuno-hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

#wrapwrap .efeuno-hover-glow:hover {
    box-shadow: 0 0 30px rgba(16,185,129,0.3);
}

/* ---------- Typography ---------- */
#wrapwrap .efeuno-heading {
    font-weight: 800;
    letter-spacing: -0.02em;
}

#wrapwrap .efeuno-gradient-text {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Pricing Cards ---------- */
#wrapwrap .efeuno-pricing-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

#wrapwrap .efeuno-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

#wrapwrap .efeuno-pricing-card.featured {
    transform: scale(1.03);
    border: 2px solid #10b981;
    box-shadow: 0 8px 32px rgba(16,185,129,0.15);
}

#wrapwrap .efeuno-pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 60px rgba(16,185,129,0.2);
}

#wrapwrap .efeuno-pricing-card.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 16px;
    right: -32px;
    background: #10b981;
    color: white;
    padding: 4px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    z-index: 1;
}

/* ---------- Hero ---------- */
#wrapwrap .efeuno-hero {
    position: relative;
    overflow: hidden;
}

/* ---------- Buttons ---------- */
#wrapwrap .efeuno-btn {
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    display: inline-block;
}

#wrapwrap .efeuno-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ---------- Icon Box ---------- */
#wrapwrap .efeuno-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Check List ---------- */
#wrapwrap .efeuno-check-list {
    list-style: none;
    padding: 0;
}

#wrapwrap .efeuno-check-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* ---------- Accordion ---------- */
#wrapwrap .efeuno-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background: white;
}

#wrapwrap .efeuno-accordion .accordion-item:last-child {
    border-bottom: none;
}

#wrapwrap .efeuno-accordion .accordion-button {
    font-weight: 600;
    color: #0f172a;
    padding: 1.25rem;
}

#wrapwrap .efeuno-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: #10b981;
}

#wrapwrap .efeuno-accordion .accordion-button:focus {
    box-shadow: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    #wrapwrap .efeuno-hero h1 {
        font-size: 2rem !important;
    }
    #wrapwrap .efeuno-pricing-card.featured {
        transform: scale(1);
    }
    #wrapwrap .efeuno-pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ---------- Fallback for no backdrop-filter ---------- */
@supports not (backdrop-filter: blur(16px)) {
    #wrapwrap .efeuno-glass-card {
        background: rgba(255,255,255,0.95);
    }
}
