/* =====================================
   LARIKA FLASH — PREMIUM DARK GOLD 2026
   ===================================== */

:root {
    --bg-main: #0b0a08;
    --bg-surface: #14120f;
    --bg-elevated: #1a1712;

    --text-primary: #f5f4f2;
    --text-secondary: #d2cec8;
    --text-muted: #a19a90;

    --accent-gold: #d4af37;      /* dourado premium */
    --accent-gold-soft: #2a2414;

    --border-subtle: rgba(255,255,255,0.06);

    --radius-xl: 20px;
    --radius-lg: 16px;
    --radius-md: 12px;

    --shadow-soft: 0 10px 30px rgba(0,0,0,0.45);
    --shadow-hover: 0 18px 45px rgba(0,0,0,0.65);
}

/* BASE */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: radial-gradient(
        1200px 600px at 50% -10%,
        #1f1a10,
        var(--bg-main)
    );
    color: var(--text-primary);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.2px;
}

/* CONTAINER */
.container {
    max-width: 680px;
    margin: auto;
    padding: 24px 18px 56px;
}

/* LOGO */
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.logo img {
    max-width: 90px;
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(212,175,55,0.35));
}

/* TITULOS */
h1 {
    display: none;
}

h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* =====================================
   COMBOS
   ===================================== */

.combo {
    background: linear-gradient(
        180deg,
        var(--bg-elevated),
        var(--bg-surface)
    );
    border-radius: var(--radius-xl);
    padding: 24px;
    margin-bottom: 22px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.combo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* TITULO DO COMBO */
.combo h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* DESCRIÇÃO */
.combo p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* =====================================
   CONTROLES
   ===================================== */

.controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
}

/* BOTÕES */
.controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    color: var(--accent-gold);
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.controls button:hover {
    background: var(--accent-gold-soft);
    box-shadow: 0 0 0 6px rgba(212,175,55,0.15);
}

/* QUANTIDADE */
.controls span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

/* =====================================
   RESUMO / FORM
   ===================================== */

.resumo {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

/* INPUTS */
input, select {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 15px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder {
    color: var(--text-muted);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.25);
}

/* =====================================
   TOTAL
   ===================================== */

#total {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* =====================================
   BOTÃO WHATSAPP
   ===================================== */

.btn-whatsapp {
    width: 100%;
    padding: 20px;
    border-radius: 26px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;

    background: linear-gradient(
        135deg,
        #25d366,
        #128c7e
    );

    box-shadow: 0 20px 60px rgba(37,211,102,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 80px rgba(37,211,102,0.65);
}
