* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
    width: 100%;
}

.meu-cabecalho {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background-image: linear-gradient(to right, #063060, #3A86FF);
    color: white;
    padding: 2px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo-container img {
    width: 150px;
    height: auto;
    display: block;
}

.navegacao-central {
    text-align: center;
}

.navegacao-central h1 {
    margin: 0 0 5px 0;
    font-size: 2.2em;
    font-weight: bold;
}

.navegacao-central nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
}

.swiper {
    width: 100%;
    height: 300px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

:root {
    --swiper-theme-color: #ffffff;
    --swiper-navigation-size: 30px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--swiper-theme-color);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet-active {
    background-color: var(--swiper-theme-color);
}




.conteudo-texto {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.conteudo-texto h2 {
    font-size: 2em;
    color: #333;
}

#meuBotao {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#meuBotao:hover {
    background-color: #0056b3;
}




.secao-categorias {
    margin-top: 10;
    max-width: 1100px;
    margin: 10px auto;
    padding: 0 20px;
}

.titulo-secao {
    text-align: center;
    margin-top: 0;
    font-size: 2em;
    color: #333;
    margin-bottom: 40px;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.categoria-card {
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.categoria-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.categoria-card h3 {
    margin: 15px 0;
    font-size: 1.1em;
    color: #333;
    font-weight: 600;
}

footer {
    background-color: #063060;
    color: white;
    text-align: left;
    
    padding: 20px 0;
    width: 100%;
}