

/* ... your it help, halison casimiro, 12-12-2025 ... */
 /* Cores Base Samene: 
 /* Color Theme Swatches in Hex * /
.FERRARI-1-hex { color: #BF0B1A; }
.FERRARI-2-hex { color: #731022; }
.FERRARI-3-hex { color: #26030C; }
.FERRARI-4-hex { color: #D9D162; }
.FERRARI-5-hex { color: #F2F2F2; }
 

 
 */
        :root {
            --bs-primary: #050000; /* Preto para elementos principais */
            --bs-secondary: #BF0B1A; /* para destaque */
            --bs-dark: #400101;
            --bs-light: #F2F2F2;
            --whatsapp-green: #25D366;
        }

        .bg-samene-dark { background-color: var(--bs-primary); }
        .bg-samene-light { background-color: var(--bs-light); }
        .text-samene-primary { color: var(--bs-primary); }
        .text-samene-secondary { color: var(--bs-secondary); }
        .btn-samene {
            background-color: var(--bs-secondary);
            border-color: #BF0B1A;
            color: white;
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            transition: background-color 0.3s ease;
        }
        .btn-samene:hover {
            background-color: #e0a800;
            border-color: #e0a800;
            color: var(--bs-primary);
        }
        .border-samene-secondary { border-color: var(--bs-secondary) !important; }

        footer {
            background-color: var(--bs-dark);
        }
        
        /* Foto do Eduardo para a seção "Quem é" */
        .eduardo-photo {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

/* Estilo para a seção Hero */
#hero {
    /* Removido o background estático */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative; /* Necessário para posicionar o video e o conteúdo */
    overflow: hidden; /* Garante que o vídeo não saia dos limites */
}

/* Container do Conteúdo para garantir que fique visível */
#hero .container {
    position: relative;
    z-index: 2; /* Garante que o texto fique acima do overlay e do vídeo */
}

/* Overlay para dar contraste e escurecer o vídeo */
#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Overlay escuro */
    z-index: 1; /* Fica entre o vídeo (0) e o conteúdo (2) */
}

/* Estilo para o vídeo */
#video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%); /* Centraliza o vídeo */
    object-fit: cover; /* Garante que o vídeo cubra toda a área */
}

/* Ajuste para ícones das listas no Hero */
#hero ul li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.5rem;
}
#hero ul li::before {
    content: '✅';
    margin-right: 0.5rem;
}

/* ... O restante do seu CSS ... */

/* --- CSS para o Widget Flutuante do WhatsApp --- */

/* Contêiner principal, fixo na lateral inferior direita */
.whatsapp-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050; /* Z-index alto para ficar acima de tudo */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Estado visível após o scroll */
.whatsapp-widget-container.visible {
    opacity: 1;
    visibility: visible;
}

/* Balão de mensagem (inspirado na foto) */
.whatsapp-bubble {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 250px;
}

.whatsapp-bubble p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

/* Bico do balão de fala */
.whatsapp-bubble:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 15px solid white;
    border-bottom: 10px solid transparent;
    position: absolute;
    left: -15px; /* Posição à esquerda do balão */
    bottom: 15px;
}

/* Botão Fale Conosco */
.whatsapp-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    width: 100%;
}

.whatsapp-cta-button:hover {
    background-color: #1FAF59;
    color: white;
}

.whatsapp-cta-button .icon-send {
    margin-left: 10px;
    /* Ícone de seta simplificado */
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
}

/* --- CSS para a Seção de CTA Final (Seção 13) --- */

.cta-final {
    background-color: var(--bs-primary);
    padding: 60px 0;
}

.cta-final h2 {
    color: var(--bs-secondary); /* Amarelo/Laranja de destaque */
}

.cta-final p {
    color: var(--bs-light);
    font-size: 1.15rem;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ced4da;
}

.contact-info strong {
    color: white;
}