* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #1e0d04;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* ── CONTAINER HERO ─────────────────────────────────────── */
.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background-image: url('images-layout/background-chocolandia.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #D2691E;
    margin: 20px auto;
}

.container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #ff9a56 0%, #ffc266 50%, #ffb84d 100%);
    z-index: -1;
}

.content {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6%;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.3) 100%);
}

.header { text-align: left; }

.logo {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: bold;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-style: italic;
}

.middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
}

.cta-button {
    background: rgba(139, 69, 19, 0.95);
    color: #FFD700;
    padding: 15px 40px;
    border: 2px solid #FFD700;
    border-radius: 50px;
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.cta-button:hover {
    background: rgba(160, 82, 45, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.footer-quote { text-align: center; }

.quote {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: #FFD700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    padding: 0 10px;
}

/* ── BOTÃO MUTE ─────────────────────────────────────────── */
#btn-mute {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 999;
    background: rgba(30, 13, 4, 0.75);
    border: 1.5px solid #6b2d0e;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    backdrop-filter: blur(4px);
}

#btn-mute:hover {
    background: rgba(107, 45, 14, 0.9);
    transform: scale(1.1);
}

/* ── 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; }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        border-radius: 10px;
    }
    .content { padding: 5%; }
    .logo { letter-spacing: 1px; }
    .cta-button { padding: 12px 30px; }
}