/* Definições globais e reset básico */
:root {
    --color-primary-red: #e60012; /* Vermelho principal da Brahma */
    --color-whatsapp-green: #25D366; /* Verde oficial do WhatsApp */
    --color-text-dark: #333;
    --color-text-light: #666;
    --font-family: 'Roboto', Arial, sans-serif;
    --max-content-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header --- (Mantido como antes) */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    border-bottom: 1px solid #eee;
    height: 60px;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.header-logo img {
    height: 40px;
    display: block;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--color-text-dark);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4CAF50;
}

.header-whatsapp svg {
    color: var(--color-text-dark);
}

/* --- Main Content Container --- */
.content-container {
    max-width: var(--max-content-width);
    margin: 40px auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Estilo para a Section de Texto */
.text-section {
    flex: 1;
}

.text-section h1 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.text-section p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 550px;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-light);
}

.delivery-icon {
    font-size: 20px;
}

/* Estilo para a Section de Ações (Botões) */
.action-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.action-button {
    display: block;
    padding: 15px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-red {
    background-color: var(--color-primary-red);
    color: #fff;
}

.primary-red:hover {
    background-color: #b3000f;
}


/* --- NOVO: Botão Fixo do WhatsApp na parte inferior direita --- */

.whatsapp-fixed-button {
    /* Posicionamento Fixo (Flutuante) */
    position: fixed;
    bottom: 25px; /* Ajustado para ficar um pouco mais visível */
    right: 25px; /* Distância da lateral direita */
    z-index: 1000; /* Garante que fique acima de outros elementos */
    
    /* Estilo da Bolinha */
    background-color: var(--color-whatsapp-green); 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    /* Centraliza o ícone */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Sombra para destaque */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    
    /* Efeito de Transição */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.whatsapp-fixed-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-fixed-button svg {
    /* Ajusta o tamanho do ícone */
    width: 32px;
    height: 32px;
    fill: white;
}


/* --- Media Query para Desktop --- (Mantido como antes) */
@media (min-width: 768px) {
    .header {
        padding: 10px 20px;
    }

    .header-logo img {
        height: 50px;
    }

    .text-section h1 {
        font-size: 48px;
    }

    .action-section {
        max-width: 400px;
        margin: 0;
    }

    .content-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 80px;
        padding: 0 20px;
        margin: 80px auto;
    }
    
    /* Ajuste de posição para o botão flutuante em desktop se necessário */
    .whatsapp-fixed-button {
        bottom: 40px;
        right: 40px;
    }
}

/* Oculta o texto "Aberto" e o tempo no mobile, mantendo o ícone no canto */
@media (max-width: 767px) {
    .header-status {
        display: none;
    }

    /* Ajuste para o botão flutuante em mobile */
    .whatsapp-fixed-button {
        bottom: 15px;
        right: 15px;
        width: 55px; 
        height: 55px;
    }
    .whatsapp-fixed-button svg {
        width: 30px;
        height: 30px;
    }
}