@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');

* {
    font-family: 'Work Sans', sans-serif;
}
html{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #ffffff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #ccc;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

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

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo span {
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    color: #FF6A00;
    font-size: 20px;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    justify-content: flex-end;
}

.menu li {
    display: inline;
}

.menu li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.menu li a.active,
.menu li a:hover {
    width: 100%;
    color: #FF6A00;
}


.menu li a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: #FF6A00;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu li  a.active::after,
.menu li a:hover::after {
    width: 100%;
    color: #FF6A00 !important;
}

.barra {
    border-right: 2px solid #333;
    height: 20px;
    margin-left: 20px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.social-icons img {
    height: 16px;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 999;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #FF6A00;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsividade e Animações */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        text-align: center;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .menu-toggle {
        display: flex;
    }

    .menu li {
        padding: 15px 0;
    }

    .social-icons {
        display: none;
        justify-content: center;
        margin-top: 10px;
    }

    .barra {
        display: none;
    }
    
    .menu {
        max-height: 500px;
        opacity: 1;
        visibility: none;
        background-color: #fff;
    }

}

.hero-section {
    background-image: url('./assets/hero-image.png');
    background-size: cover;
    background-position: center top;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 70px; /* Espaço para compensar o menu fixo */
}

.hero-content h1 {
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: 700;
    width: 70vw;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button {
    padding: 15px 30px;
    background-color: #FF6A00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65a00;
}

/* Ajustes de responsividade para a hero section */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
        margin: 0 auto;
        max-width: 80vw;
    }

    .hero-content p {
        font-size: 18px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* SEÇÃO EMPRESAS PARCEIRAS */
.partner-section {
    background-color: #d7a595; /* Cor de fundo semelhante à do exemplo */
    padding: 40px 20px;
    text-align: center;
}

.partner-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.partners {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.partner {
    flex: 1 1 200px;
    margin: 10px;
}

.partner img {
    max-width: 250px;
    margin-bottom: 10px;
}

.partner p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

/* Responsividade */
@media (max-width: 1024px) {
    .partner-section h2 {
        font-size: 22px;
    }

    .partner img {
        max-width: 80px;
    }

    .partner p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .partners {
        flex-direction: column;
    }

    .partner {
        margin-bottom: 20px;
    }

    .partner img {
        max-width: 200px;
    }

    .partner p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .partner-section h2 {
        font-size: 20px;
    }

    .partner img {
        max-width: 200px;
    }

    .partner p {
        font-size: 12px;
    }
}

/* seção de nossos serviços */
.services-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    h2{
        font-size: 42px;
        font-weight: bold;
        color: #002855;
        margin-bottom: 40px;
        display: inline-block;
        padding-bottom: 10px;
    }
}

.services-section h2 {
    font-size: 42px;
    font-weight: bold;
    color: #002855;
    margin-bottom: 40px;
    display: inline-block;
    padding-bottom: 10px;
}

.services-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Espaçamento entre os cards */
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Garante que todos os cards comecem do mesmo ponto */
    flex-wrap: wrap;
    gap: 20px; /* Espaçamento entre os cards */
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 320px; /* Largura fixa para todos os cards */
    text-align: center;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column; /* Para manter o conteúdo alinhado */
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
}

.service-card img {
    width: 100%;
    height: 250px; /* Define uma altura fixa para as imagens */
    object-fit: cover; /* Ajusta a imagem para cobrir o espaço sem distorcer */
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002855;
    margin: 16px 0;
}

.service-card p {
    font-size: 14px;
    color: #555555;
    margin: 0 16px;
    line-height: 1.5;
    flex-grow: 1; /* Faz o parágrafo ocupar o espaço restante */
}

.service-card:hover {
    transform: translateY(-10px);
}

.cta-button-serviços {
    padding: 15px 30px;
    background-color: #002855;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-serviços:hover {
    background-color: #004a8f;
}



@media (max-width: 768px) {
    .service-card {
        max-width: 100%;
        margin: 0 auto 20px;
    }
    .services-section h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }

    .cta-button-serviços {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-section h2 {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 12px;
    }

    .cta-button-serviços {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Seção Sobre Nós */
.about-us {
    background-color: #ffffff;
    padding: 60px 20px;
}

.about-us-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* Canto arredondado na imagem */
    max-width: 500px;
}

.about-us-content {
    max-width: 500px;
    text-align: left;
}

.about-us-content h2 {
    font-size: 42px;
    font-weight: bold;
    color: #002855;
    margin-bottom: 20px;
}

.about-us-content p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-button-inscreva-se {
    padding: 15px 30px;
    background-color: #369672;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button-inscreva-se:hover {
    background-color: rgb(30, 90, 41);
}

/* Responsividade */
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .about-us-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-button-inscreva-se {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-us-content h2 {
        font-size: 28px;
    }

    .about-us-content p {
        font-size: 14px;
    }

    .cta-button-inscreva-se {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Seção de carrossel de imagens */
.carousel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: auto;
    background-color: #fff;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    height: 550px;
    margin: auto;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
    text-align: center;
    padding: 20px;
    background-color: transparent;
    border-radius: 12px;
    margin-top: -60px;
    z-index: 998;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.carousel-active, .dot:hover {
    background-color: #dc6a6a;
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-container {
        height: 250px;
    }

    .prev, .next {
        font-size: 14px;
        padding: 12px;
    }

    .dot {
        height: 12px;
        width: 12px;
    }
}
/* Seção Depoimentos */

.testimonials {
    background-color: #d7a595; /* Cor de fundo da seção */
    padding: 80px 20px 120px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: bold;
    color: #002855;
    margin-bottom: 50px;
    display: inline-block;
    padding-bottom: 10px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px; /* Bordas mais arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
    padding: 20px;
    max-width: 300px;
    height: 400px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação na transformação e na sombra */
}

.course {
    display: block; /* Garante que fique em uma nova linha */
    font-style: italic;
    color: #808080; /* Tom de cinza */
    margin: 0; /* Remove espaçamento extra */
    font-size: 0.8em; /* Ajusta o tamanho da fonte */
}

.testimonial-card h3 {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    font-size: 18px;
    font-weight: bold;
    color: #002855;
    margin-bottom: 10px;
}

.testimonial-card h3 img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px; /* Espaço entre a imagem e o nome */
    object-fit: cover;
}
.testimonial-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Aumenta a sombra ao passar o mouse */
}

/* Responsividade */
@media (max-width: 1024px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 90%;
        margin-bottom: 20px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 28px;
    }

    .testimonial-card h3 {
        font-size: 16px;
    }

    .testimonial-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 24px;
    }

    .testimonial-card h3 {
        font-size: 14px;
    }

    .testimonial-card p {
        font-size: 12px;
    }
}

/* Seção de Contatos */
.contact-section{
    background-color: #d7a595;
}

.contact-div {
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    max-width: 40%; /* Ajuste para a largura do texto */
    text-align: left;
    margin-right: 20px; /* Espaçamento entre o texto e o formulário */
}

.contact-info h2 {
    font-size: 42px; /* Ajuste para o tamanho do texto */
    font-weight: bold;
    color: #002855;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}

.contact-form {
    max-width: 50%; /* Ajuste para a largura do formulário */
    width: 100%;
    align-items: center;
    padding: 60px 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: space-between; /* Mantém os inputs separados */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #333333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
    font-family: 'Work Sans', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.button-form {
    min-width: 150px;
    padding: 15px;
    background-color: #369672; /* Cor do botão */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    align-self: center; /* Alinha o botão ao Centro */
    margin-top: 10px; /* Espaçamento superior para o botão */
}

.button-form:hover {
    background-color: #369665;
}

/* Responsividade */
@media (max-width: 1024px) {
    .contact-div {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .form-group {
        flex-direction: column;
        gap: 10px; /* Menor espaçamento entre os inputs em telas menores */
    }

    .form-group input,
    .form-group textarea {
        width: 100%; /* Inputs ocupam toda a largura disponível */
    }

    .button-form {
        background-color: #369672; /* Cor do botão */
        align-self: center; /* Centraliza o botão em telas menores */
        width: 100%; /* Botão ocupa toda a largura disponível */
    }
}

@media (max-width: 768px) {
    .contact-div {
        padding: 40px 10px; /* Reduz o padding em dispositivos móveis */
    }

    .contact-info h2 {
        font-size: 28px; /* Reduz o tamanho do título em dispositivos móveis */
    }

    .form-group {
        flex-direction: column;
        gap: 10px; /* Menor espaçamento entre os inputs em dispositivos móveis */
    }

    .form-group input,
    .form-group textarea {
        width: 100%; /* Inputs ocupam toda a largura disponível */
    }

    .contact-info p {
        font-size: 14px; /* Reduz o tamanho do texto em dispositivos móveis */
    }

    .button-form {
        background-color: #369672; /* Cor do botão */
        padding: 12px; /* Reduz o padding do botão em dispositivos móveis */
        font-size: 14px; /* Reduz o tamanho da fonte do botão */
        width: 100%; /* Botão ocupa toda a largura disponível */
    }
}

@media (max-width: 480px) {
    .contact-div {
        padding: 30px 10px; /* Ajusta ainda mais o padding em dispositivos muito pequenos */
    }

    .contact-info h2 {
        font-size: 24px; /* Tamanho do título ajustado para dispositivos muito pequenos */
    }

    .form-group {
        flex-direction: column;
        gap: 8px; /* Menor espaçamento entre os inputs */
    }

    .form-group input,
    .form-group textarea {
        width: 90%; /* Inputs ocupam toda a largura disponível */
        font-size: 14px; /* Tamanho da fonte ajustado */
    }

    .button-form {
        background-color: #369672; /* Cor do botão */
        padding: 10px; /* Botão com padding menor */
        font-size: 12px; /* Tamanho da fonte do botão ajustado */
        width: 100%; /* Botão ocupa toda a largura disponível */
    }
}

.map-section {
    padding: 0;
    margin: 0;
    background-color: #f4f4f4; /* Cor de fundo opcional */
}

.map-container {
    width: 100%;
    height: 350px; /* Altura do mapa */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* responsividade */
@media (max-width: 768px) {
    .map-container {
        height: 300px; /* Altura do mapa para dispositivos móveis */
    }
}

/* Seção do Rodapé */
.footer-section {
    background-color: #D7A595; /* Cor do branding */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
    color: #000;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    margin-right: 10px;
}

.company-info {
    text-align: right;
    p{
        font-size: 16px;
        padding: 0;
        margin: 0px 0px 10px 0px;
    }
}

.social-links {
    text-align: center; /* Centraliza os ícones sociais */
}

.social-links a {
    margin: 0 10px;
    color: #000;
    font-size: 20px;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo img {
    max-width: 80px; /* Limita o tamanho da logo */
    display: block;
    margin: 0px auto 10px auto; /* Centraliza a logo */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-menu li a {
    color: #000;
    text-decoration: none;
}

.footer-menu li a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
    font-size: 0.9em;
    color: #000;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        max-width: 100px;
    }

    .company-info {
        text-align: center;
    }

    .footer-section{
        .footer-menu{
            display: none;
        }
    }
}

/* Seção da Página de Serviços */
.services-hero {
    background-image: url('./assets/servicos-hero-image.png'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 70px;
    h1{
        font-size: 70px;
        margin-bottom: 10px;
        font-weight: 700;
        width: 70vw;
    }
    p{
        font-size: 20px;
        margin-bottom: 40px;
        font-weight: 400;
        width: 70vw;
    }
}

.services-hero .cta-button {
    padding: 15px 30px;
    background-color: #003366; /* Ajuste a cor do botão conforme necessário */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 20px; /* Alinhado com o título */
    transition: background-color 0.3s ease;
}

.services-hero .cta-button:hover {
    background-color: #002244; /* Ajuste a cor do hover conforme necessário */
}

/* Ajustes de responsividade para a seção de serviços */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 38px;
        max-width: 100vw;
    }

    .services-hero p {
        font-size: 16px;
        margin-bottom: 40px;
        font-weight: 400;
        text-align: center;
        width: 90vw;
    }

    .services-hero .cta-button {
        padding: 10px 20px;
        font-size: 16px;
        text-align: center;
    }
}

/* Imagem serviços antes do rodapé */
.full-width-image {
    width: 100%;
    height: 70vh;
    background-image: url(./assets/estudantes.jpg);
    background-attachment: fixed;
    background-size: cover;
    align-items: center;
    display: flex;
    justify-content: center;
    a{
        border: 1px solid white !important;
    }
}

@media (max-width: 768px) {
    .full-width-image{
        background-position: center;
        a{
            font-size: 20px;
        }
    }
}

.cta-button-inscreva-se {
    padding: 15px 30px;
    background-color: #369672;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    border: 2px solid white;
    text-align: center;
    font-size: 18px;
    margin: 0 auto; /* Centraliza o botão horizontalmente */
}

.cta-button-inscreva-se:hover {
    background-color: #369690;
    color: white;
}
.cta-button-inscreva-se2 {
    padding: 15px 30px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    border: 2px solid white;
    text-align: center;
    font-size: 18px;
    margin: 0 auto; /* Centraliza o botão horizontalmente */
}

.cta-button-inscreva-se2:hover {
    background-color: #369690;
    color: white;
}

.inscreva-section {
    background-color: #245F89;
    padding: 60px 0;
    text-align: center;
    height: 250px;
}

.inscreva-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Work Sans', sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #333333;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    color: #888888;
    font-family: 'Work Sans', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.button-form {
    padding: 12px 30px;
    background-color: #369672; /* Cor do botão */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.button-form:hover {
    background-color: #2a7b5a; /* Cor de hover */
}

/* Responsividade */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }

    .form-group{
        width: 90%;
    }

    .button-form {
        width: 100%;
    }
}

/* popup notificação */
.notification-popup {
    display: none; /* Inicialmente oculto */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #369672;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.notification-popup button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    margin-left: 20px;
    cursor: pointer;
}

/* Seção Sobre Nós */
.sobre-nos-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100vh; /* Ocupa toda a altura da tela */
    background-color: #c07c66; /* Cor de fundo marrom */
}

.sobre-nos-content {
    flex: 1;
    padding: 40px; /* Ajusta o espaçamento interno */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinha o texto à esquerda */
}

.sobre-nos-content h1 {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px; /* Espaçamento entre o título e o texto */
}

.sobre-nos-content p {
    font-size: 18px;
    color: white;
}

.sobre-nos-image {
    flex: 1;
    height: 100%; /* Garante que a imagem ocupe toda a altura */
    overflow: hidden;
}

.sobre-nos-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra toda a área disponível */
}

/* Responsividade */
@media (max-width: 768px) {
    .sobre-nos-section {
        flex-direction: column;
        text-align: center;
    }

    .sobre-nos-image img {
        width: 100%;
        height: auto; /* Ajusta a imagem em telas menores */
    }

    .sobre-nos-content {
        align-items: center; /* Centraliza o texto em telas menores */
    }

    .sobre-nos-content h1 {
        font-size: 36px;
    }

    .sobre-nos-content p {
        font-size: 16px;
    }
}

/* Seção Nossa História */
.nossa-historia-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 20px;
    background-color: #ffffff;
    gap: 20px;
}

.nossa-historia-content {
    flex: 1;
    padding-right: 20px;
}

.nossa-historia-content h2 {
    font-size: 42px;
    font-weight: bold;
    color: #002855;
    margin-bottom: 10px;
    display: inline-block;
}

.nossa-historia-content p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nossa-historia-image {
    flex: 1;
    padding-left: 20px;
}

.nossa-historia-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsividade */
@media (max-width: 768px) {
    .nossa-historia-section {
        flex-direction: column;
        text-align: center;
    }

    .nossa-historia-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .nossa-historia-image {
        padding-left: 0;
    }

    .nossa-historia-image img {
        width: 100%;
        height: auto;
    }
}

/* Seção Nossa Missão */
.nossa-missao-section {
    background-color: #236E92;
    color: white;
    text-align: center;
    padding: 90px 20px;
}

.nossa-missao-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.nossa-missao-section p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .nossa-missao-section h2 {
        font-size: 28px;
    }

    .nossa-missao-section p {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* seção nossos valores */
/* Seção Nossos Valores */
.values-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.h1-values-section {
    font-size: 42px;
    font-weight: bold;
    color: #002855;
    margin-bottom: 40px;
    display: inline-block;
    padding-bottom: 10px;
}

.values-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Espaçamento entre os cards */
    margin-bottom: 40px;
}

.value-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
    margin: 20px;
}

.value-card img {
    width: 100%;
    height: 350px;
    display: block;
    border-bottom: 1px solid #e0e0e0;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002855;
    margin: 16px 0;
}

.value-card p {
    font-size: 14px;
    color: #555555;
    margin: 0 16px;
    line-height: 1.5;
}

.value-card:hover {
    transform: translateY(-10px);
}

/* Responsividade */
@media (max-width: 1024px) {
    .values-container {
        flex-direction: column;
        align-items: center;
    }

    .value-card {
        max-width: 90%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .h1-values-section {
        font-size: 28px;
    }

    .value-card h3 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .h1-values-section {
        font-size: 24px;
    }

    .value-card h3 {
        font-size: 16px;
    }

    .value-card p {
        font-size: 12px;
    }
}

.value-card img,
.service-card img {
    width: 100%;
    height: auto; /* Mantém a proporção correta da imagem */
    object-fit: cover; /* Cobre o espaço do card sem distorcer a imagem */
    border-bottom: 1px solid #e0e0e0;
}

/* botão scroll top */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 10px 15px;
    background-color: #FF6A00;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none; /* O botão começa invisível */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn:hover {
    background-color: #e65a00;
    transform: translateY(-3px);
}

.scroll-top-btn i {
    font-size: 22px; /* Ajusta o tamanho do ícone */
}

/* Popup do whatsapp fixo */

/* Estilo básico do botão do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 0px;
    background-color: #25d366;
    border-radius: 50px 0px 0px 50px;
    padding: 0px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Texto que aparece ao expandir */
.whatsapp-text {
    margin-left: 10px;
    font-size: 16px;
    color: white;
    max-width: 0;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.5s ease, opacity 0.5s ease;
}

.whatsapp-expanded .whatsapp-text {
    max-width: 200px;
    opacity: 1;
}

.whatsapp-expanded {
    padding-right: 20px;
    transition: all 0.5s ease;
}

/* Estilo da animação Lottie */
.lottie-container {
    width: 60px;
    height: 60px;
}

