

/* 1.ESTILOS GERAIS E RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}


/* 2.COMPONENTES GLOBAIS (BOTÕES, LOGOS, ANIMAÇÕES */

.logo-img {
    width: 90px;
    height: auto;
    object-fit: contain;
    display: block;

    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 1s ease-out, transform 1s ease-out;

}

.logo-img.aparecer {
    opacity: 1;
    transform: translateY(0);
}


/* PADRONIZAÇÃO DE BOTÕES */

.btn-contato, 
.btn-hero, 
.btn-enviar, 
.btn-semanal-news {
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    border: none;
    text-align: center;
}


.btn-hero {

    color: #5c67f2;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: linear-gradient(90deg, #1a237e, #ffffff);
}

.btn-enviar { 
    background: linear-gradient(90deg, #1a237e, #5c67f2);
    color: white;
    border: none;
    padding: 15px 30px; 
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s;
}

.btn-semanal-news {
    background-color: #1a237e;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    }

.btn-enviar-news:hover {
    background-color: #5c67f2;
    transform: translateY(-2px);
    
}

.btn-contato:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(92, 103, 242, 0.4)
}

.btn-enviar:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3)
}




.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
}


nav ul {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #1a237e;
    font-weight: 500;
    transition: color 0.3s;
    padding: 20px;
}

nav ul li a:hover {
    color: #5c67f2;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: linear-gradient(90deg, #5c67f2, #8089ff);
} 





#inicio {
    height: 70vh;
    background-image: url(img/ondas_vermelha_azul.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;

}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(255,255,255,0.2); }
    50% { text-shadow: 0 0 25px rgba(108, 99, 255, 0.6); }
    100% { text-shadow: 0 0 10px rgba(255,255,255,0.2); }
} 


@keyframes formulario-semanal{
    0% { text-shadow: 0 0 10px rgba(255,255,255,0.2); }
    50% { text-shadow: 0 0 25px rgba(108, 99, 255, 0.6); }
    100% { text-shadow: 0 0 10px rgba(255,255,255,0.2); }
}




.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    font-size: 4.2rem;
    margin-bottom: 30px;
    padding: 0 15px;
    color: aliceblue;
    line-height: 1.1;
    animation: fadeInUp 1.2s ease-out, titleGlow 3s infinite ease-in-out;

}

.hero-content-p {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: aliceblue;
    text-align: center;
}





.aparecer {
    opacity: 1;
    transform: translate(0);

}


/* Background do carrossel destaques */
#destaques {
    padding: 60px 0;
    background-color: rgba(240, 248, 255, 0.055);
    overflow: hidden; 
}

.cards-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;


    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}


.cards-wrapper::-webkit-scrollbar {
    height: 8px;
}


.cards-wrapper::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
}


.cards-wrapper::-webkit-scrollbar-track{
    background-color: #333;
}



.card {
    background-color: aliceblue;
    min-width: 280px;
    flex: 1 1 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 350px;
    scroll-snap-align: start;


}


.card:hover {
    transform: translateY(-8px);
}

.card-body {
    padding: 20px;
}


.card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 15px;
    
}

.secao-destaques {
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

}

.container-secao-destaques {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}



.container-secao-destaques h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #002147;
    font-size: 3rem;

}




footer {
    text-align: center;
}



/* ICONES */


.metodologia-grid {

    display: grid;
    gap: 60px 40px;
    width: 100%;
    margin-top: 50px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

}

.container-metodologia {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

.container-metodologia img {
    max-width: 200px;
    max-height: 200px;
}




.metodo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.icon-metodo {
    font-size: 3rem;
    padding-bottom: 25px;
    color: #1a237e;
}

.container-metodologia h2 {
    max-width: 800px;
    text-align: center;
    font-size: 2rem;
    color: #333;
}


.container-metodologia h2 span {
    color: #1a237e;
}   



/* Formulário */

.contato-section {
    background-image: url(img/ondas_vermelha_azul.png);
    min-height: 80vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0 auto;
    padding: 80ox 20px;

}


.formulario-box {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}




.formulario-box h2 {
    margin-bottom: 10px;
    color: #1a237e;
    text-align: center;
    font-size: 2.5rem;
}

.formulario-box p {
    margin-bottom: 30px;
    text-align: center;
    color: #1a237e;
}


/* Organizando CAMPOS */
.formulario-box form div {
    margin-bottom: 20px;
    text-align: left;
}   


.formulario-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: aliceblue;
}


.formulario-box input, .formulario-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #1a237e;
    margin-bottom: 5px;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 8px;
    font-size: 1rem;
}

.formulario-box input:focus, 
.formulario-box textarea:focus {
    border-color: #5c67f2; /* Observação: Muda a cor da borda para a cor da marca ao digitar */
    box-shadow: 0 0 5px rgba(92, 103, 242, 0.3);
}






/* Edição footer */


.fhc-footer {
    background-color: #002147;
    color: white;
    padding: 20px;

}

.fhc-container {
    display: flex;
    justify-content: space-between;
}

.fhc-copyright {
    text-align: center;
    margin-top: 40px;
}



/*  formulário rápido destaques da semana */

.formulario-semanal {
    background-image: url(img/fundo-azul.jpg);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.formulario-semanal-box h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 8px;
}

.formulario-semanal-box p {
    color: black;
    margin-bottom: 15px;
}





/* Estrutura de formulário em linha */

.form-inline {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.form-inline input[type="email"] {
    flex: 1;
    padding: 15px 100px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}







/* ESTILIZAÇÃO DE PARCEIROS  */
.unitermi {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.container-unitermi {
    max-width: 1200px;
    margin: 0 auto;
}



.img-parceiro {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;


}

/* PAGINA EMPRESAS PARCEIRAS CSS */

.parceiro-unitermi {
    padding: 30px 0;
    background-color: #ffffff;
}

.container-stolf {
    padding: 400px 0;
   
}

.container-parceiro-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;

}



.img-full {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.col-texto {
    flex: 1;
    text-align: left;
}

.col-texto h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.col-texto p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;;
}

.endereco-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 30px;
    color: #002147;
    font-weight: 600;
}

.endereco-box {
    margin-top: 5px;
}

@media (max-width: 768px) {.contato-section {
    background-image: url(img/ondas_vermelha_azul.png);
    height: 70vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    max-width: 100%;
    margin: 0 auto;

}
    .container {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }


    @media (min-width: 1024px) {
    .hero-content {
        font-size: 1.5rem; /* Observação: Tamanho equilibrado para desktops padrão */
    }
    
    .fhc-animate {
        letter-spacing: 8px; /* Observação: Aumenta o espaçamento das letras para um look mais premium */
    }

.contato-section {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    max-width: 100%;
    margin: 0 auto;

}

}





.hero-content {
    text-align: center;
    font-size: 2.2rem;
    padding: 0 15px;
    line-height: 1.1;
}

.hero-content-p {
    font-size: 1.2rem;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;

}

#inicio {
    height: auto;
    padding: 80px 30px;
}


}


.header {
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;

}

nav ul {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}




.container-stolf {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 0;

}



.counter {
    font-size: 3rem;
    font-weight: 800;
    color: #002147;
    margin: 10px 0;
    display: block;
}


.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)
}


/* CHAT BOT */

.chat-container {
    width: 300px;
    height: 400px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid #1a237e;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.chat-window {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-family: sans-serif;
    font-size: 14px;
}

.input-area {
    display: flex;
    border-top: 1px solid #1a237e;
}

input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}


button {
    padding: 10px;
    background: #007bff;
    color: whiter;
    border: none;
    cursor: pointer;
}