body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #333
}
h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}
main h1 {
    font-size: 34px;
    margin-bottom: 15px;
}

main p {
    font-size: 17px;
    font-weight: 400;
}
header {
    background-color: #fcc82e;
    padding: 30px;
}

header img {
    max-width: 280px;
}

main {
    padding: 40px 20px;
}

.botoes {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 30px;
}

.btn img {
    width: 22px;
}

.whatsapp {
    background-color: #25d366;
}

.instagram {
    background-color: #dc3535;
}
.marcas {
    padding: 50px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.marcas h2 {
    margin-bottom: 30px;
    font-size: 22px;
}

.marcas-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.marca {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    width: 180px;
}

.marca img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

.marca p {
    margin-top: 10px;
    font-weight: bold;
}
.pagamentos {
    background-color: #ffc107;
    padding: 40px 20px;
    text-align: center;
}

.pagamentos h2 {
    margin-bottom: 10px;
}

.pagamentos p {
    font-weight: bold;
    margin-bottom: 25px;
}

.pagamentos-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pagamento {
    background-color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}