/* assets/css/style.css */

/* --- Fontes personalizadas --- */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f0f9ff; /* bg-blue-50 equivalente */
    color: #1e293b; /* text-gray-800 */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* --- Hero Section com imagem de fundo --- */
.hero-bg {
    background-image: url('../images/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-bg h1 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    max-width: 70ch;
    padding: 0 1.5rem;
}

/* --- Ajustes responsivos --- */
@media (max-width: 768px) {
    .hero-bg {
        height: 45vh;
    }
    .hero-bg h1 {
        font-size: 2rem;
    }
}

/* --- Footer personalizado --- */
.footer-copyright {
    font-size: 0.875rem;
}

/* --- Links de navegação --- */
.nav-link {
    @apply font-medium text-gray-800 hover:text-blue-600 transition;
}

/* Nota: classes "apply" acima são apenas comentários — Tailwind não funciona em CSS externo.
   Por isso, vamos usar CSS puro para estilos personalizados. */

a.nav-link {
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.nav-link:hover {
    color: #2563eb; /* blue-600 */
}

/* --- Fundo no rodapé (versão reduzida) --- */
.footer-bg {
    background-image: url('../images/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 120px; /* altura pequena */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Escurecer o fundo para legibilidade */
.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* overlay escuro */
    z-index: 1;
}

.footer-bg-content {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}