/* ============================================
   STATUS ONLINE - Indicador "estamos online"
   ============================================
   Pontinho verde + texto discreto. Integrado ao
   header (desktop) e como chip flutuante (mobile).
   Linguagem visual: presença, não emergência.
   ============================================ */

.status-online {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    background: rgba(208, 179, 100, 0.08);
    border: 1px solid rgba(208, 179, 100, 0.2);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.status-online:hover {
    background: rgba(208, 179, 100, 0.15);
    border-color: rgba(208, 179, 100, 0.4);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

/* O pontinho verde */
.status-online__dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

/* Anel que pulsa em volta — efeito "vivo" */
.status-online__dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    opacity: 0.5;
    animation: status-pulse 2s ease-out infinite;
}

@keyframes status-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

/* Brilho central permanente — sinal de "ligado" */
.status-online__dot::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,94,0.4) 0%, transparent 70%);
    pointer-events: none;
}

/* Versão para o header desktop — posicionada à esquerda do CTA */
.status-online--header {
    margin-right: 0.5rem;
}

@media (max-width: 1023px) {
    .status-online--header {
        display: none; /* esconde no mobile — usa o chip flutuante */
    }
}

/* ============================================
   CHIP FLUTUANTE MOBILE
   ============================================
   Aparece no canto inferior esquerdo (espelho do
   botão WhatsApp). Compacto, retrátil, sumindo
   ao scroll se quisermos no futuro.
   ============================================ */

.status-chip {
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    z-index: 49;
    display: none; /* desktop esconde, mobile mostra */
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: rgba(58, 58, 58, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(208, 179, 100, 0.3);
    border-radius: 999px;
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.status-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(208, 179, 100, 0.6);
}

.status-chip .status-online__dot {
    width: 7px;
    height: 7px;
}

.status-chip__text {
    color: rgba(255, 255, 255, 0.9);
}

.status-chip__text strong {
    color: var(--primary-light);
    font-weight: 700;
}

@media (max-width: 1023px) {
    .status-chip {
        display: inline-flex;
    }
}

@media (max-width: 380px) {
    .status-chip {
        bottom: 1.5rem;
        font-size: 0.68rem;
        padding: 0.5rem 0.75rem;
    }
}

/* ============================================
   BARREL PICKER - Guia interativo de barril
   ============================================
   Card escuro "premium" dentro do fundo claro.
   Visualmente é o ponto focal — propositalmente
   diferente, conectado por gradientes dourados
   nas bordas.
   ============================================ */

.barrel-guide {
    margin-top: 4rem;
    background:
        linear-gradient(135deg, #2a2520 0%, #1a1612 50%, #2a2520 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-shadow:
        0 25px 50px -15px rgba(58, 45, 25, 0.35),
        0 0 0 1px rgba(208, 179, 100, 0.3),
        inset 0 1px 0 rgba(232, 215, 160, 0.15);
}

/* Borda dourada superior — conexão visual com fundo claro */
.barrel-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary),
        var(--primary-light),
        var(--primary),
        transparent);
}

/* Textura interna sutil */
.barrel-guide::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(208,179,100,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(208,179,100,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.barrel-guide > * {
    position: relative;
    z-index: 1;
}

.barrel-guide__header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.barrel-guide__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.barrel-guide__eyebrow i {
    font-size: 0.65rem;
    animation: float-mini 2s ease-in-out infinite;
}

@keyframes float-mini {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

.barrel-guide__title {
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.barrel-guide__title .gold {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.barrel-guide__subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    max-width: 480px;
    margin: 0 auto;
}

.barrel-picker {
    padding: 1.5rem 2rem 2rem;
}

.barrel-picker__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.barrel-picker__label i {
    color: var(--primary);
}

.barrel-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 540px) {
    .barrel-options {
        grid-template-columns: 1fr;
    }
}

.barrel-option {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(208, 179, 100, 0.2);
    border-radius: 0.875rem;
    padding: 1rem 0.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    font-family: inherit;
    overflow: hidden;
}

.barrel-option:hover {
    background: rgba(208, 179, 100, 0.08);
    border-color: rgba(208, 179, 100, 0.4);
    transform: translateY(-2px);
}

.barrel-option.is-active {
    background: linear-gradient(135deg, rgba(208,179,100,0.18), rgba(208,179,100,0.08));
    border-color: var(--primary);
    box-shadow: 0 8px 24px -8px rgba(208,179,100,0.4),
                inset 0 1px 0 rgba(255,255,255,0.1);
}

.barrel-option.is-active::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.barrel-option__people {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-light);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.barrel-option__label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.barrel-result {
    margin-top: 1.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.15));
    border: 1px solid rgba(208, 179, 100, 0.25);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s ease;
}

@media (max-width: 540px) {
    .barrel-result {
        flex-direction: column;
        text-align: center;
        gap: 0.875rem;
    }
}

.barrel-result__icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 10px 30px -10px rgba(208, 179, 100, 0.5);
    position: relative;
}

.barrel-result__icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 1.125rem;
    border: 1px solid rgba(208, 179, 100, 0.3);
    opacity: 0;
    animation: barrel-glow 2.5s ease-in-out infinite;
}

@keyframes barrel-glow {
    0%, 100% { opacity: 0; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.05); }
}

.barrel-result__body {
    flex: 1;
}

.barrel-result__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.barrel-result__title {
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 1.75rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.barrel-result__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.barrel-result__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px -6px rgba(37, 211, 102, 0.5);
    white-space: nowrap;
}

.barrel-result__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -6px rgba(37, 211, 102, 0.6);
}

.barrel-result__cta i {
    font-size: 1.125rem;
}

@keyframes barrel-result-in {
    from { opacity: 0.3; transform: translateY(4px); }
    to   { opacity: 1;   transform: translateY(0); }
}

.barrel-result.is-changing {
    animation: barrel-result-in 0.4s ease-out;
}
