/*
Theme Name: Simone Podologia
Description: Tema de alta conversão e performance na primeira dobra.
Author: Arnald
Version: 1.0
*/

:root {
    --primary-color: #b35a59; /* Tom terracota da logo */
    --whatsapp-green: #25D366;
    --text-color: #333333;
    --bg-color: #fcfcfc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--bg-color); color: var(--text-color); line-height: 1.6; }

/* Container Principal */
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Cabeçalho */
.site-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid #eee; margin-bottom: 30px; }
.logo img { max-height: 80px; }

/* Layout Primeira Dobra (Desktop) */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 70vh; /* Garante que caiba na tela */
}

/* Tipografia e Textos */
h1 { color: var(--primary-color); font-size: 2.5rem; line-height: 1.2; margin-bottom: 15px; }
.subheadline { font-size: 1.2rem; margin-bottom: 20px; }
.aviso-hora { font-weight: bold; margin-bottom: 15px; }

/* Lista de Tratamentos */
.tratamentos-lista { list-style: none; margin-bottom: 30px; }
.tratamentos-lista li { margin-bottom: 8px; font-size: 1.1rem; }

/* Botão WhatsApp */
.btn-whatsapp {
    display: inline-flex; align-items: center; justify-content: center;
    background-color: var(--whatsapp-green); color: white;
    padding: 15px 30px; border-radius: 50px; text-decoration: none;
    font-size: 1.2rem; font-weight: bold; transition: background 0.3s;
}
.btn-whatsapp:hover { background-color: #1ebc5a; }

/* Coluna Direita (Imagem e Maps) */
.hero-image { text-align: center; }
.hero-image img { max-width: 100%; border-radius: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.map-address { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 500;}

/* Responsivo (Mobile) */
@media (max-width: 768px) {
    .hero-section { grid-template-columns: 1fr; min-height: auto; }
    h1 { font-size: 2rem; text-align: center; }
    .hero-image { order: -1; margin-bottom: 20px; } /* Foto sobe no mobile */
    .site-header { justify-content: center; }
    
    /* Botão Sticky no Mobile */
    .btn-container {
        position: fixed; bottom: 0; left: 0; width: 100%;
        background: white; padding: 15px; box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        text-align: center; z-index: 1000;
    }
    .btn-whatsapp { width: 100%; }
    /* Espaço extra no fim da página para o botão não sobrepor conteúdo */
    body { padding-bottom: 80px; } 
}