/* ── FOOTER ─────────────────────────────────────────────── */
.cl-footer {
    width: 100%;
    background: #1e0d04;
    font-family: 'Lato', sans-serif;
    padding: 52px 28px 28px;
    position: relative;
    margin-top: 20px;
}

.cl-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a1a08, #e8b84b 30%, #c9904a 60%, #3a1a08);
}

.cl-footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.cl-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cl-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8b84b;
    letter-spacing: 4px;
    line-height: 1;
}

.cl-tagline {
    font-size: 0.78rem;
    color: #c9904a;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 300;
    margin-top: 4px;
}

.cl-ornament {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 16px;
}

.cl-line {
    flex: 1;
    max-width: 48px;
    height: 1px;
    background: #6b2d0e;
}

.cl-diamond {
    width: 7px;
    height: 7px;
    background: #e8b84b;
    transform: rotate(45deg);
    opacity: 0.7;
}

.cl-info {
    font-size: 0.82rem;
    color: #8a5a38;
    line-height: 2;
}

.cl-info strong {
    color: #c9904a;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    padding-top: 6px;
}

.cl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.cl-btn:hover { transform: translateY(-2px); }
.cl-btn:active { transform: scale(0.98); }

.cl-btn-pedido {
    background: #e8b84b;
    color: #1e0d04;
    box-shadow: 0 4px 20px rgba(232,184,75,0.25);
}

.cl-btn-pedido:hover {
    box-shadow: 0 6px 28px rgba(232,184,75,0.4);
}

.cl-btn-zap {
    background: transparent;
    color: #e8b84b;
    border: 1.5px solid #6b2d0e;
}

.cl-btn-zap:hover {
    border-color: #e8b84b;
    box-shadow: 0 4px 16px rgba(232,184,75,0.15);
}

.cl-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.cl-bottom {
    max-width: 860px;
    margin: 36px auto 0;
    padding-top: 20px;
    border-top: 1px solid #2e1208;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cl-copy {
    font-size: 0.72rem;
    color: #4a2510;
    letter-spacing: 0.5px;
    font-style: italic;
}

.cl-hearts {
    display: flex;
    gap: 6px;
    align-items: center;
}

.cl-heart { font-size: 10px; color: #6b2d0e; }

/* ── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 580px) {
    .cl-footer-inner { grid-template-columns: 1fr; }
    .cl-btns { align-items: stretch; }
    .cl-btn { justify-content: center; }
}
