/* style.css */

body {
    color: #0B0F16;
    -webkit-font-smoothing: antialiased;
}

/* Fundo Atmosférico */
.bg-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(800px 400px at 20% 15%, rgba(251, 191, 36, 0.08), transparent 60%),
        radial-gradient(700px 380px at 80% 85%, rgba(229, 231, 235, 0.5), transparent 60%);
    z-index: -1;
}

/* Efeitos de Botão */
.btn-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

/* Header e Logo */
header.headerRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logoLink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    user-select: none;
}

.logoImg {
    height: 96px; 
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 160ms ease;
    transform-origin: left center;
}

.logoLink:hover .logoImg {
    transform: translateY(-1px);
}

/* Ajuste fino para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 380px) {
    .logoImg { height: 70px; }
    h1 { font-size: 2rem !important; }
}