/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #071b3c;
    background-color: #f9f9f9;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #071b3c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 100px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #FFD700;
}

/* Hero Section */
.hero {
    background-image: url('imagens/hero-background.jpg'); /* Separado para maior clareza */
    background-color: #1a355d; /* Fallback caso a imagem não carregue */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

/* Overlay opcional para melhorar legibilidade (descomente se necessário) */
/*
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
*/

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Animação de Surgir de Baixo para Cima */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700;
    color: #071b3c;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #DAA520;
}

/* Botão Menor (para o "Enviar" no formulário de contato) */
.btn-small {
    padding: 10px 20px;
}

/* Botão "Enviar" Específico */
.submit-btn {
    width: 120px;
    padding: 8px 0;
    text-align: center;
    border-radius: 10px;
    border:none;

}

/* Carrossel de Parceiros */
.partners {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.partners h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #071b3c; /* Mudar a cor para dourado */
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.partners h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #FFD700; /* Linha decorativa na cor principal do site */
}

.partners-subtitle {
    font-size: 16px;
    color: #666; /* Cinza escuro para o texto menor */
    font-weight: 300; /* Fonte mais leve */
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .partners h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .partners-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Animação de Surgir de Baixo para Cima */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .partners h2 {
        font-size: 20px; /* Reduzir o tamanho da fonte em telas menores */
        margin-bottom: 20px;
    }
}

.carousel {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 10s linear infinite;
    /* Removido will-change para evitar possíveis erros em validadores */
    /* Se precisar de otimização de performance, pode reativar com cuidado */
}

.carousel-track img {
    height: 40px;
    margin: 0 15px;
    flex-shrink: 0;
    /*filter: grayscale(100%);*/
    transition: filter 0.3s;
}

.carousel-track img:hover {
    filter: grayscale(0%);
}

/* Pausar o carrossel ao passar o mouse */
.carousel:hover .carousel-track {
    animation-play-state: paused;
}

/* Animação de Rolagem Contínua */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Seção de Serviços */
.services {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.services h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #071b3c;
}





.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #071b3c;
}

.service-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.more-details {
    color: #071b3c;
    text-decoration: none;
    font-weight: bold;
}

.more-details:hover {
    color: #DAA520;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    max-width: 600px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #071b3c;
}

/* Seção Quem Somos */
.about {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
}

.about h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #071b3c;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

/* Seção Fundadora */
.founder {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.founder h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #071b3c;
}

.founder-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-img {
    max-width: 300px;
    border-radius: 10px;
    flex: 0 0 300px;
}

.founder-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.founder-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

/* Seção de Contato */
.contact {
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
}

.contact h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #071b3c;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #333333;
    background-color: #fff;
    padding: 0 5px;
}

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

/* Botão Comece Agora */
.start-now {
    text-align: center;
    margin-top: 40px;
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-btn img {
    width: 40px;
    height: 40px;
}

/* Rodapé */
footer {
    background-color: #071b3c;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    margin-bottom: 10px;
}

.social-link img {
    width: 30px;
    height: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }

    .hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

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

    .founder-content {
        flex-direction: column;
        text-align: center;
    }

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

    .founder-text {
        text-align: center;
        max-width: 100%;
    }

    .logo img {
        height: 100px;
    }
}

.contact-section p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-section p strong {
    color: #007bff; /* Cor azul para destacar o e-mail */
}

/* Estilo do Ícone de Menu Hambúrguer */
.menu-toggle {
    display: none; /* Escondido por padrão */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mostrar o ícone de menu e ajustar o menu em dispositivos móveis */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mostrar o ícone em telas menores */
    }

    nav {
        display: none; /* Esconder o menu por padrão */
        width: 100%;
        position: absolute;
        top: 100%; /* Posicionar abaixo do header */
        left: 0;
        background-color: #071b3c;
        padding: 20px 0;
    }

    nav.active {
        display: block; /* Mostrar o menu quando ativo */
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        font-size: 1.2em;
    }
}

/* Rodapé */
footer {
    background-color: #071b3c;
    color: #fff;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo img {
    height: 80px; /* Ajustar o tamanho do logotipo */
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
}

.social-link:hover {
    color: #FFD700; /* Cor dourada ao passar o mouse */
}

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

.partner-info img {
    height: 40px; /* Ajustar o tamanho do ícone do parceiro */
    margin-bottom: 5px;
}

.partner-info p {
    font-size: 14px;
    color: #ccc;
}

.partner-name {
    font-weight: bold; /* Colocar o texto em negrito */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 18px;
    color: #FFD700; /* Ícones em dourado */
}

.contact-item span {
    font-size: 16px;
}

.copy-btn {
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s;
}

.copy-btn:hover {
    color: #DAA520; /* Tom mais escuro de dourado ao passar o mouse */
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

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

    .footer-left {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    .contact-info {
        align-items: center;
    }

    .footer-logo img {
        height: 40px;
    }

    .contact-item span {
        font-size: 14px;
    }

    .partner-info img {
        height: 30px;
    }
}

/* Seção com Imagem de Soluções */
.solutions-image {
    background-color: #071b3c; /* Azul escuro da paleta */
    padding: 60px 20px;
    text-align: center;
}

.solutions-image-content {
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-title {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700; /* Dourado para destaque */
    margin-bottom: 40px;
    line-height: 1.3;
    opacity: 1; /* Fallback para garantir visibilidade */
    visibility: visible; /* Garantir que não esteja escondido */
}

/* Animação fade-in-up */
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fade-in-up 0.5s ease forwards;
}

.solutions-title.fade-in-up {
    animation-delay: 0.1s; /* Atraso para o título */
}

.solutions-image-content img {
    width: 100%;
    max-width: 500px; /* Largura máxima em desktops */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .solutions-image {
        padding: 30px 10px; /* Reduzir o padding */
    }

    .solutions-title {
        font-size: 20px; /* Reduzir o tamanho do título */
        margin-bottom: 20px; /* Reduzir o espaçamento */
    }


}

@media (max-width: 480px) {
    .solutions-image {
        padding: 20px 10px; /* Reduzir ainda mais o padding */
    }

    .solutions-title {
        font-size: 18px; /* Reduzir mais o tamanho do título */
        margin-bottom: 15px;
    }


}

/* Estilo padrão para títulos de seções */
.section-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #071b3c; /* Azul escuro */
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-align: center; /* Garantir que o texto fique centralizado */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #FFD700; /* Linha decorativa dourada */
}

/* Animação para os títulos */
.section-title.fade-in-up {
    animation-delay: 0.1s; /* Mesmo atraso usado anteriormente */
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .section-title::after {
        width: 40px; /* Reduzir a largura da linha em telas menores */
        height: 2px; /* Reduzir a espessura da linha */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    .section-title::after {
        width: 30px; /* Reduzir ainda mais a largura da linha */
        height: 2px;
    }
}