* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    position: relative;
    background-color: #FFFFFF;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;

    padding-bottom: 200px;
}

.bottom-section {
    background-color: #FFFFFF;
    
    flex-grow: 1;
}


.container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #350f22;
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100vw;
    position: relative;
    padding-top: 20px; /* Garante espaço para a logo */
    margin-bottom: 0; 
}

.content {
    max-width: 500px;
    z-index: 2;
}

/* Ajuste da logo */
.logo {
    margin-bottom: 20px;
    text-align: left;
}

.logo img {
    max-width: 240px; /* Define um tamanho fixo */
    height: auto;
    /*display: block;*/
}

h1 {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.2;
}


p {
    font-size: 28px;
    color: #ffffff;
    margin: 20px 0;
}

.botao {
    text-align: center;
}
.btn {
    display: inline-block;
    padding: 15px 105px;
    background-color: #ff4081;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 120px;
    transition: background 0.3s;
    margin-bottom: 20px;
}

.btn:hover {
    background-color: #e03570;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 480px;
    position: relative;
    z-index: 2;
}

.divider {
    background-color: #350f22;
}
/* ðŸ”¹ Efeito de Onda na Parte Inferior */
.custom-shape-divider-bottom-1740660722 {

    position: relative;
    width: 100vw; /* Garante que o contêiner ocupe toda a largura da tela */
    margin-top: 0;
    bottom: -2px;
    left: 0;
    overflow: hidden; /* Oculta qualquer conteúdo que ultrapasse os limites */
    line-height: 0;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo horizontalmente */

}

.custom-shape-divider-bottom-1740660722 svg {
    position: relative;
    display: block;
    width: 100%; /* Ajusta a largura para 100% do contêiner */
    max-width: 100%; /* Impede que ultrapasse o tamanho do contêiner */
    height: 206px;
    transform: scaleY(-1); /* Inverte o SVG verticalmente */
    border: none;
}

.custom-shape-divider-bottom-1740660722 .shape-fill {
    fill: #FFFFFF;
}

.extra-content {
    background-color: white;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100vw;
    bottom: 0;
    left: 0;
    margin-bottom: 30px;
}


.box {
    background-color: #350f22;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    color: #350f22;
    text-align: center;
    width: fit-content;
    border-radius: 30px;
    padding: 60px 20px;
    
}

.extra-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 900;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;;
    flex-wrap: wrap;
    max-width: 1900px;
    margin: auto;
}

.card {
    background-color: #f8f8f8;
    border-radius: 30px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.card img {
    width: 800px;
    margin-bottom: 15px;
    max-width: 100%;
}

.card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #666;
}

.card:hover {
    transform: scale(1.05);
}

.sobre {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #350f22;
    padding: 20px;
    text-align: center;
    width: 100vw;
    min-height: 800px;
    
}
.sobreNosText {
    color: #350f22;
    margin-left: 30px;
    max-width: 800px;
    text-align: left;
}

.sobre h2 {
    position: relative;
    left: 0;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    
}
.sobre p{
    font-size: 20px;
    color: #350f22;
    margin: 20px 0;
}




.economia {
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #350f22;
    padding: 20px;
    text-align: center;
    width: 100vw;
    min-height: 800px;
    
}

.economiaText {
    color: #350f22;
    margin-left: 30px;
    max-width: 30vw;
    text-align: left;
}

.economia h2 {
    position: relative;
    left: 0;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    
}
.economia p{
    font-size: 20px;
    color: #350f22;
    margin: 20px 0;
}

.economia img {
    max-width: 60vw;
    height: auto;
    border-radius: 16px;
    border: 5px solid #350f22;
    margin-left: 30px;
}

.btn-Economia {
    display: inline-block;
    padding: 15px 105px;
    background-color: #ff4081;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 120px;
    transition: background 0.3s, padding 0.3s, font-size 0.3s;
    max-width: 40vw;
    font-size: 1.1vw;
}

.btn-Economia:hover {
    background-color: #e03570;
}

.site-footer {
    background-color: #350f22; 
    position: absolute;
    width: 100vw;
    bottom: 0;
    left: 0;
    padding: 20px 40px; 
    color: #ffffff; 
}

.footer-content {
    display: flex;
    justify-content: space-around; 
    align-items: center; 
    flex-wrap: wrap; 
}

.footer-logo img {
    max-width: 650px; 
    height: auto;
}

.footer-contact {
    text-align: left; 
}

.footer-contact p {
    margin: 4px 0; 
    font-size: 1rem;
}

.footer-contact a {
    color: #ffffff; /* Cor branca para o link */
    ; /* Remove o sublinhado */
}

.footer-contact a:hover {
    color: #ffccde; /* Cor rosa claro no hover */
    text-decoration: underline; /* Sublinha o texto ao passar o mouse */
}



/* Responsividade */

@media (max-width: 1024px) {
    .container {
        flex-direction:column;
        text-align: center;

    }

    .image-container {
        margin-top: -20px;
        
    }
    .image-container img {
        width: 380px;
    }

    .logo {
        text-align: center;       

    }

    .btn {
        text-align: center;
    }

    h1 {
        font-size: 48px;
    }
    p {
        font-size: 18px;
    }

    .sobre {
        flex-direction: column;
        padding: 20px;
    }
    .sobre img {
        width: 100%;
        max-width: 300px;
        margin-bottom: 30px;
    }

    .economia {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }
    .economia img {
        width: 100%;
        max-width: 100vw;
        margin-bottom: 30px;
        margin-left: auto;
    }
    .economiaText {
        max-width: 60vw;
        text-align: center;
    }
    .btn-Economia {
        padding: 12px 60px;
        max-width: 60vw;
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
}

@media (max-width: 768px) { 
    .economiaText {
        margin-left: auto;
        max-width: 90vw;
        text-align: center;
    }
    .card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
    }
    .btn-Economia {
        padding: 12px 60px;
        max-width: 60vw;
        font-size: 1rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 500px) { 
    .btn-Economia {
        padding: 12px 60px;
        max-width: 100vw;
        font-size: 1rem;
    }
    .footer-contact {
        text-align: center; 
}

}