* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Evita barra de rolagem horizontal no mobile */
html,
body {
    overflow-x: hidden;
    width: 100%;
    
}

.home {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Força a altura da tela */
    width: 100%;
    overflow: hidden; /* Trava o scroll vertical */
}

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* Overlay para o texto não sumir */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Foca no centro/topo. Pode usar: left, right, bottom, etc. */
    display: block;
}


.content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    z-index: 2;
}

.content .title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    line-height: 1.1;
}

.content .icon {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

/* SEÇÃO DE LOGOS - CORRIGIDA */
.brand {
    background-color: rgb(255, 255, 255);
    width: 100%;
    min-height: 10vh;
    /* Mudei para min-height */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* ESSENCIAL: Faz os logos quebrarem linha se não couberem */
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* Reduzi um pouco o gap padrão */
    padding: 15px;
    /* Adicionado para os logos não colarem na borda */
}

.brand .img {
    height: 60px;
    /* Reduzi um pouco a altura padrão para ajudar no encaixe */
    width: auto;
    max-width: 140px;
    /* Impede que um logo gigante quebre o layout */
}

/* CONFIGURAÇÃO DE IMAGENS */
.banner-mobile {
    display: none !important;
}

.banner-pc {
    display: block;
}

/* --- MEDIA QUERY (Mobile) --- */
@media (max-width: 768px) {
    .banner-pc {
        display: none !important;
    }

    .banner-mobile {
        display: block !important;
    }

    .hero {
        height: 90vh;
    }

    .content .title {
        font-size: 1.4rem;
        width: 100%;
    }

    .brand {
        gap: 20px;
        height: auto;
        padding: 20px 10px;
    }

    .brand .img {
        height: 45px;
    }

    .button-32 {
        width: 100%;
        max-width: 250px;
        font-size: 16px;
    }
}

/* BOTÃO */
.button-32 {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #cc971b;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 15px;
    text-align: center;
    transition: 200ms;
    width: 250px;
    border: 0;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    z-index: 3;
    height: 41px;
}

.button-32:hover {
    background-color: transparent; 
    border: 2px solid #cc971b;   
    color: #cc971b;    
}

.cont{
   color: #fff !important; 
}
.row-contact {
    display: flex;                /* Ativa o Flexbox */
    flex-direction: row;          /* Coloca os itens em linha (lado a lado) */
    justify-content: center;      /* Centra os botões no ecrã (como na sua imagem) */
    gap: 20px;                    /* Cria um espaço de 20px entre os dois botões */
    flex-wrap: wrap;              /* Permite que os botões saltem para a linha de baixo se o ecrã for muito pequeno */
    margin-top: 20px;             /* Dá um espaço acima dos botões, ajuste se necessário */
}



.fav{
    border-radius:30px;
}