/*
Theme Name: Dólar do Dia - Child Theme
Description: Tema filho do Twenty Twenty Four customizado para o site Dólar do Dia com header dinâmico
Template: twentytwentyfour
Version: 1.0.0
Author: Dólar do Dia
*/

/* Importar o CSS do tema pai */
@import url("../twentytwentyfour/style.css");

/* Customizações específicas do Dólar do Dia */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Garantir espaço para o header fixo */
body {
    padding-top: 80px !important;
}

body.admin-bar {
    padding-top: 112px !important;
}

/* Estilos específicos para o header dinâmico */
.dolardodia-header-dynamic {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
} 