  /* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #01558c;
    color: white;
}

.btn-primary:hover {
    background-color: #2494d1;
    transform: translateY(-2px);
}

.btn-hero {
    background-color: #01558c;
    color: white;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-hero:hover {
    background-color: #2494d1;
    transform: translateY(-2px);
}

.btn-form {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
}

/* Cabeçalho */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    color: #01558c;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #01558c;
}

/* Background - "hero section" */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01558c, rgba(7, 34, 91, 0.9));
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    margin-top: 100px;
    color: rgb(255, 255, 255);
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.20rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Seções */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

/* Sobre a Solução */
.solucao {
    background-color: #f8fafc;
    margin-top: 90px;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.recurso-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.recurso-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff6ff;
    border-radius: 50%;
}

.recurso-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.recurso-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.recurso-description {
    color: #64748b;
    line-height: 1.6;
}

.solucao-demo {
    text-align: center;
    margin-top: 3rem;
}

.demo-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Diferenciais */
.diferenciais {
    background-color: white;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: transform 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-4px);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #01558c;
    border-radius: 50%;
}

.diferencial-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.diferencial-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.diferencial-description {
    color: #64748b;
    line-height: 1.6;
}

/* Planos e preços */
.plans {
    background-color: #fafdff;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plans-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: transform 0.3s ease;
}

.plans-card:hover {
    transform: translateY(-4px);
}

.plans-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #01558c;
    border-radius: 50%;
}

.plans-icon i {
    font-size: 2.5rem;
    color: white;
}

.plans-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.plans-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.plans-description {
    color: #64748b;
    line-height: 1.6;
}


/* Demonstração */
.demonstracao {
    background-color: #f8fafc;
}

.demo-placeholder {
    background: white;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contato */
.contato {
    background-color: white;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contato-icon {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.contato-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.contato-details p {
    color: #64748b;
}

        /* Rodapé */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    text-align: center;
}
.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2494d1;
}
.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}
.footer-links-title {
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-links-list {
    list-style: none;
}
.footer-links-list li {
    margin-bottom: 0.5rem;
}
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #3b82f6;
}
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
}
.footer-copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}
/* Responsividade */
@media (max-width: 992px) {
    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        display: none;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }
    .nav-list.active {
        display: flex;
    }
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto;
        margin-right: 1rem;
        z-index: 1001;
    }
    .nav-toggle-bar {
        width: 28px;
        height: 3px;
        background: #01558c;
        border-radius: 2px;
        display: block;
    }
    .logo {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .recursos-grid {
        grid-template-columns: 1fr;
    }
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .recurso-card,
    .diferencial-card {
        padding: 1.5rem;
    }
}

/* Estilos para navegação ativa */
.nav-link.active {
    color: #01558c !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #01558c;
    border-radius: 1px;
}

.nav-link {
    position: relative;
}

/* Ajustes responsivos para navegação */
@media (max-width: 768px) {
    .nav-link.active::after {
        display: none;
    }
}

