/* Dentro de static/css/global.css */

/* Adicionando uma fonte externa (opcional, mas recomendado) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --cor-primaria: #17386B;
    --cor-texto: #333;
    --cor-branca: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: var(--cor-texto);
    /* Removemos o padding-top daqui, pois ele será aplicado na seção Hero */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-float {
    position: fixed;
    bottom: 7vh;
    right: 8vw;
    z-index: 799;
    width: 4vw;
    height: 8vh;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    height: 7vh;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}