/*
Theme Name: DeboraLouise Pure Theme
Theme URI: https://www.seusite.com.br/
Author: Seu Nome
Author URI: https://www.seusite.com.br/
Description: Tema puro e autônomo para a landing page da Farmacêutica Débora Louise. Todo o conteúdo está integrado no tema.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: landing-page, one-page, custom, lightweight
Text Domain: deboralouise
*/

/* Estilos Globais do Site */
:root {
    --bege-claro: #F0EAD6;
    --verde-oliva: #A3B18A;
    --verde-escuro: #587458;
    --marrom-escuro: #344E41;
    --laranja-queimado: #BC6C25;
    --whatsapp-green: #25D366;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bege-claro);
    color: var(--marrom-escuro);
}

h1, h2, h3, .font-display {
    font-family: 'Playfair Display', serif;
}

/* Estilo para o botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}
