/* Reset e Configuração Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

/* Fundo Claro com Sofisticação */
body {
    background-color: #f8faff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Cabeçalho Fixado com Estilo */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(0, 102, 204, 0.9), rgba(0, 153, 51, 0.9));
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.logo img {
    width: 200px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
}

/* Navegação Corporativa */
nav ul {
    list-style: none;
    display: flex;
    align-items: center; /* Alinha os itens verticalmente */
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #004f6e;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s, transform 0.2s;
}

nav ul li a:hover {
    color: #ffb703;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
                url('../img/fundo.webp') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    padding: 20px;
    margin-top: 80px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0) 90%);
}

.hero-content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Botão CTA Moderno */
.cta-button {
    display: inline-block;
    background: #008f39;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: #005f28;
    transform: scale(1.1);
}

/* Seções de Conteúdo com Design Sofisticado */
.content-section {
    padding: 60px;
    text-align: center;
    background: white;
    margin: 50px auto;
    width: 80%;
    border-radius: 15px;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background: #f8faff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 40px;
    color: #008f39;
    margin-bottom: 15px;
}

/* Rodapé Refinado */
footer {
    text-align: center;
    padding: 30px;
    background: #004f6e;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Botão Flutuante Estilizado */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffb703;
    color: #1a1a1a;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, background 0.3s;
}

.floating-button:hover {
    background: #ff9100;
    transform: scale(1.1);
}

/* Responsividade com Estilo */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    .hero {
        height: 80vh;
    }

    .hero-content {
        width: 90%;
    }

    .content-section {
        width: 95%;
    }
    
    .logo img {
        width: 150px;
    }
}

/* Estilos para a seção do sistema */
.sistema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sistema-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sistema-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

.sistema-card .icon {
    text-align: center;
    margin-bottom: 20px;
}

.sistema-card .icon i {
    font-size: 40px;
    color: #008f39;
}

.sistema-card h3 {
    font-size: 22px;
    color: #004f6e;
    margin-bottom: 15px;
}

.sistema-card ul {
    list-style: none;
    padding-left: 0;
}

.sistema-card ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.sistema-card ul li::before {
    content: "•";
    color: #008f39;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.contact-info {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}

.contact-info strong {
    color: #004f6e;
}

.contact-info a {
    color: #008f39;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}
/* Estilos para a seção de contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-item .icon {
    margin-right: 15px;
}

.contact-item .icon i {
    font-size: 24px;
    color: #008f39;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.contact-item a {
    color: #004f6e;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #008f39;
}
/* Estilos para a seção de Pronta Resposta */
.pronta-resposta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pronta-resposta-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pronta-resposta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

.pronta-resposta-card .icon {
    text-align: center;
    margin-bottom: 20px;
}

.pronta-resposta-card .icon i {
    font-size: 40px;
    color: #008f39;
}

.pronta-resposta-card h3 {
    font-size: 22px;
    color: #004f6e;
    margin-bottom: 15px;
}

.pronta-resposta-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.cta-text {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: #333;
}

.cta-text strong {
    color: #004f6e;
}
/* Estilos para a seção "Para sua Empresa" */
.empresa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.empresa-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.empresa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

.empresa-card .icon {
    text-align: center;
    margin-bottom: 20px;
}

.empresa-card .icon i {
    font-size: 40px;
    color: #008f39;
}

.empresa-card h3 {
    font-size: 22px;
    color: #004f6e;
    margin-bottom: 15px;
}

.empresa-card ul {
    list-style: none;
    padding-left: 0;
}

.empresa-card ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.empresa-card ul li::before {
    content: "•";
    color: #008f39;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.cta-text {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: #333;
}

.cta-text strong {
    color: #004f6e;
}
/* Estilo para o ícone de login */
.login-icon {
    margin-left: 20px; /* Espaçamento à esquerda do ícone */
}

.login-icon a {
    color: white;
    font-size: 24px;
    transition: color 0.3s, transform 0.3s;
}

.login-icon a:hover {
    color: #ffb703;
    transform: scale(1.1);
}
* Garantindo que links não tenham sublinhado */
.login-text, .login-text a {
    text-decoration: none !important; /* Remove sublinhado em qualquer caso */
    color: white; /* Mantém a cor branca */
}

/* Se houver hover, mantém o comportamento esperado */
.login-text a:hover {
    color: #ffb703; /* Altera a cor no hover */
}
/* Estilo para o texto "Login" */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.login-text {
    font-size: 12px; /* Tamanho da fonte */
    margin-left: 5px; /* Espaçamento entre o ícone e o texto */
    font-family: 'Poppins', sans-serif; /* Nova fonte */
    font-weight: 600; /* Peso da fonte (pode ajustar: 300, 400, 600, etc.) */
    color: white; /* Cor do texto */
    text-decoration: none; /* Remove qualquer sublinhado */
    transition: color 0.3s; /* Transição suave para o hover */
}


/* Efeito de hover no link */
a:hover .login-text {
    color: #ffb703; /* Cor do texto ao passar o mouse */
}
/* Ajuste para as seções com links âncora */
section {
    scroll-margin-top: 130px; /* Ajuste conforme a altura do cabeçalho */
}

/* Ou, se preferir usar padding-top */
section {
    padding-top: 100px; /* Ajuste conforme a altura do cabeçalho */
    margin-top: -100px; /* Compensa o espaçamento para não criar um gap visual */
}