* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h2{
    text-align: center;
}

body {
    background-color: #fdfdfd;
    font-family: Nunito;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.cabecalho {
    background: #a61212d8;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
    animation: deslizarHeader 1s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
}

.cabecalho h1 {
    font-family: Bungee;
    font-size: 24px;
}

.menu {
    display: flex;
    gap: 20px;
    padding: 10px;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.menu a:hover {
    color: #2f3542;
}

.main {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    flex: 1;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    align-items: center;
    justify-content: center;
}

.texto {
    flex: 1;
    min-width: 300px;
    margin: 15px;
}

.texto h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.texto p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.imagem {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.imagem img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.card {
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .3s, background .3s;
    text-decoration: none;
    color: #000000;
    width: 280px;
}

.card:hover {
    transform: translateY(-8px);
    background: #A61212;
    color: white;
}

.card img {
    width: 100%;
    max-width: 240px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.formulario {
    max-width: 500px;
    margin: 0 auto 60px;
    text-align: center;
}

.formulario h2 {
    font-size: 28px;
    color: #A61212;
    margin-bottom: 20px;
}

.formulario h3 {
    font-size: 18px;
    margin: 15px 0 5px;
    color: #A61212;
}

.formulario input,
.formulario textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #A61212;
    border-radius: 6px;
    margin-bottom: 10px;
    font-family: Nunito;
}

.formulario textarea {
    resize: none;
}

.formulario button {
    width: 100%;
    padding: 12px;
    background: #fc1414;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background .3s;
}

.formulario button:hover {
    background: #8a0f0f;
}

.footer {
    background: #a61212d8;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
}


.fixed {
    position: fixed;       
    bottom: 40px;        
    right: 40px;          
    z-index: 1000;        
    max-width: 300px;
    filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.5));
}

.fixed img {
    width: 200px;        
    height: auto;
    
}

}

@keyframes deslizarHeader {
    from { transform: translateY(-100px); }
    to { transform: translateY(0); }
}
