/* Tema claro (padrão) */
:root {
    /* Cores do tema claro */
    --primary-color: #0052CC;
    /* Azul principal */
    --secondary-color: #1D2B3A;
    /* Azul escuro para header/footer */
    --accent-color: #2684FF;
    /* Azul mais vibrante para botões */
    --text-color: #172B4D;
    /* Cor principal para textos */
    --text-light: #5E6C84;
    /* Cor para textos secundários */
    --bg-color: #FFFFFF;
    /* Fundo branco */
    --light-bg: #F4F5F7;
    /* Fundo claro para cards */
    --white: #FFFFFF;
    /* Branco puro */
    --border-color: #DFE1E6;
    /* Cor para bordas */
    --dark-bg: #1a1f2b;
    --primary-color-rgb: 0, 82, 204;
}

/* Tema escuro */
[data-theme="dark"] {
    --primary-color: #2684FF;
    --secondary-color: #1D2B3A;
    --accent-color: #4C9AFF;
    --text-color: #E4E6EB;
    --text-light: #B0B8C4;
    --bg-color: #0D1117;
    --light-bg: #161B22;
    --border-color: #30363D;
}

.campo-invalido {
    border: 2px solid red;
    background-color: #ffe6e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 4rem;
}

/* Estilos do header */
header {
    background: var(--secondary-color);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Container do logo */
.logo-container {
    flex: 1;
    max-width: 200px;
}

.logo {
    height: 40px;
    width: auto;
}

/* Menu principal */
nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.nav-item {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
}

/* Botão de acesso */
.access-button-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 200px;
}

.access-button {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}

/* Efeito nos itens do menu */
.nav-item {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito de linha embaixo */
.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #2684FF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Ativa o efeito no hover */
.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    color: #2684FF;
}

/* Menu hambúrguer */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
    /* Header mobile */
    header {
        padding: 0.5rem;
        height: 60px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        z-index: 1000;
        width: 100%;
        height: 100vh;
    }

    .nav-links.active {
        display: flex !important;
    }

    .menu-toggle {
        display: block !important;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2000;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .menu-toggle span {
        transition: all 0.3s ease;
        background-color: #FFFFFF;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: #FFFFFF;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        background-color: #FFFFFF;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: #FFFFFF;
    }

    .nav-item {
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }

    .nav-item::after {
        display: none;
    }

    .nav-item:hover {
        background: rgba(38, 132, 255, 0.1);
    }

    .access-button-container {
        display: none;
    }

    .nav-links .access-button {
        margin: 1rem auto;
        width: 90%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Hero section mobile */
    .hero {
        padding: 6rem 1rem 4rem;
        margin-top: -60px;
        padding-top: 4rem;
    }

    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    /* Sections mobile */
    section {
        padding: 2rem 1rem;
    }

    /* Produtos grid mobile */
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .produto-card {
        padding: 1.5rem;
    }

    .produto-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Módulos mobile */
    .modulos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modulo-item {
        padding: 1rem;
    }

    .modulo-item h4 {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    /* Equipamentos mobile */
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .equipment-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .equipment-icon {
        margin-bottom: 0.5rem;
    }

    /* Segmentos mobile */
    .segmentos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .segmento-card {
        padding: 1.5rem;
    }

    .segmento-card h3 {
        font-size: 1.2rem;
    }

    /* Contato mobile */
    .contato-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contato-form-wrapper,
    .contato-map-wrapper {
        padding: 1.5rem;
    }

    .contato-map {
        height: 250px;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .footer-info {
        text-align: center;
        padding: 1rem 0;
    }

    .footer-info h3 {
        font-size: 1.5rem;
    }

    .footer-info h4 {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    /* WhatsApp button mobile */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    /* Textos mobile */
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Cards mobile */
    .servico-card,
    .produto-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Benefícios mobile */
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .beneficio-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .beneficio-item p {
        font-size: 0.9rem;
    }
}

.theme-toggle {
    color: #FFFFFF !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg);
}

.theme-toggle svg {
    stroke: var(--white);
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: block;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

.hero {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 10rem 5% 6rem;
    text-align: center;
    margin-top: -4rem;
    padding-top: 8rem;
}

.hero h2,
.hero p,
.hero-description {
    color: var(--white);
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: transform 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

section {
    padding: 4rem 5%;
}

.produtos-grid,
.servicos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.produtos-grid > *,
.servicos-grid > * {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
}

.contato {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-form-wrapper,
.contato-map-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contato-form-wrapper h2,
.contato-map-wrapper h2 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato-form input,
.contato-form textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contato-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contato-form button {
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contato-form button:hover {
    background-color: var(--accent-color);
}

.contato-map {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 5%;
}

/* Estilos do footer para desktop */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
}

.footer-content > * {
    flex: 1;
    min-width: 200px;
    max-width: 100%;
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-info h4.blue-text {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-info .blue-text {
    color: var(--primary-color);
}

/* Ajuste dos itens de contato */
.contato-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contato-item .icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

/* Ajuste das redes sociais e links úteis */
.footer-info ul {
    list-style: none;
    padding: 0;
}

.footer-info ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-info ul li .icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.footer-info ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info ul li a:hover {
    color: var(--primary-color);
}

.footer-info ul li a:hover {
    opacity: 0.8;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.hero-content {
    max-width: 800px;
    margin: 2rem auto;
}

.produto-card,
.servico-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover,
.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.produto-icon,
.servico-icon {
    width: 48px;
    height: 48px;
    margin: 1rem auto;
    color: var(--primary-color);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.produto-card:hover .produto-icon,
.servico-card:hover .servico-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.produto-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.produto-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.produto-features li:last-child {
    border-bottom: none;
}

.erp-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.erp-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.erp-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.segmentos {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 5%;
}

.segmentos h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.segmento-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.segmento-card:hover {
    transform: translateY(-5px);
}

.segmento-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.segmento-card p,
.segmento-exemplos li {
    color: var(--white);
    opacity: 0.9;
}

.segmento-exemplos {
    margin-top: auto;
}

/* Ajuste responsivo */
@media (max-width: 1024px) {
    .segmentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .segmentos-grid {
        grid-template-columns: 1fr;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    justify-content: center;
}

.whatsapp-button:hover {
    width: auto;
    padding: 0 25px;
    border-radius: 30px;
    background-color: #22c35e;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    fill: currentColor;
}

.whatsapp-button span {
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
}

.whatsapp-button:hover span {
    opacity: 1;
    width: auto;
    margin-left: 8px;
}

/* Animação suave ao carregar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-button {
    animation: fadeInUp 0.5s ease-out;
}

.beneficios-automacao {
    margin-top: 4rem;
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.beneficios-automacao h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item p {
    margin: 0;
    font-size: 1.1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--accent-color);
    flex-shrink: 0;
}

.produtos-descricao {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.emoji-light {
    display: inline-block;
    margin-left: 0.5rem;
}

.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas */
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.equipamento-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.equipamento-item:hover {
    transform: translateY(-5px);
}

.equipamento-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.equipamento-item p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.equipamento-item small {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.certificado-digital {
    background: linear-gradient(145deg, var(--white) 0%, var(--light-bg) 100%);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
}

.certificado-content {
    text-align: left;
}

.certificado-content h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 1.5rem 0;
}

.certificado-destaque {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 82, 204, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
}

.certificado-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature-item h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.certificado-beneficios {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.certificado-beneficios li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
}

.certificado-garantia {
    background: var(--light-bg);
    padding: 1.2rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
}

.btn-certificado {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-certificado:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.2);
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }

    .logo {
        height: 35px;
    }

    .nav-container {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-color);
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-container.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        padding: 2rem;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
    }

    .btn-sistema {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        display: grid;
        gap: 2rem;
    }

    .footer-info {
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-info:last-child {
        border-bottom: none;
    }

    .footer-info ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-info ul li,
    .contato-item {
        justify-content: center;
    }

    .segmentos-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .beneficio-item {
        padding: 0.8rem;
    }

    .produtos-descricao {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .equipamentos-grid {
        grid-template-columns: 1fr;
    }

    .equipamento-item {
        padding: 1rem;
    }

    .certificado-features {
        grid-template-columns: 1fr;
    }

    .certificado-content h4 {
        font-size: 1.2rem;
    }

    .certificado-destaque {
        font-size: 1rem;
    }
}

/* Removendo as regras condicionais de tema que não serão mais necessárias */
[data-theme="light"] .logo-dark,
[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="light"] .logo-light,
[data-theme="dark"] .logo-dark {
    display: block;
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.modulo-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.modulo-item:hover {
    transform: translateY(-5px);
}

.modulo-item h4 {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: var(--accent-color);
    font-weight: 600;
    padding: 1rem 0;
    cursor: pointer;
}

.modulo-item:hover h4 {
    margin-bottom: 1rem;
}

.modulo-features {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.modulo-item:hover .modulo-features {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.modulo-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modulo-item:hover .modulo-features li {
    opacity: 1;
    transform: translateY(0);
}

.modulo-features li:nth-child(1) {
    transition-delay: 0.1s;
}

.modulo-features li:nth-child(2) {
    transition-delay: 0.15s;
}

.modulo-features li:nth-child(3) {
    transition-delay: 0.2s;
}

.modulo-features li:nth-child(4) {
    transition-delay: 0.25s;
}

.modulo-features li:nth-child(5) {
    transition-delay: 0.3s;
}

.modulo-features li:nth-child(6) {
    transition-delay: 0.35s;
}

@media (max-width: 768px) {
    .modulos-grid {
        grid-template-columns: 1fr;
    }

    .modulo-item {
        padding: 1rem;
    }
}

/* Estilos para a página Trabalhe Conosco */
.trabalhe-conosco {
    margin: 0 auto;
    max-width: 1200px;
    padding: 120px 5% 2rem 5%;
}

.trabalhe-conosco .form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.trabalhe-conosco h1 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

.form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trabalhe-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    background: var(--light-bg);
}

.form-group h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.form-group h2 .icon {
    width: 16px;
    height: 16px;
    stroke: var(--primary-color);
    stroke-width: 2;
    margin-right: 8px;
    vertical-align: middle;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.trabalhe-form input[type="text"],
.trabalhe-form input[type="email"],
.trabalhe-form input[type="tel"],
.trabalhe-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.trabalhe-form textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.consent {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .trabalhe-conosco {
        padding: 1rem;
    }

    .form-section {
        padding: 1rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.empresa-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.empresa-info p {
    margin-bottom: 0.3rem;
}

.empresa-info strong {
    font-weight: 600;
    color: var(--accent-color);
}

/* Estilos do Carrossel */
.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.carousel-button.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: white;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 300px;
    }

    .carousel-button {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
}

/* Estilos da página Sobre */
.sobre-nos {
    padding-top: 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.sobre-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 3rem;
}

.sobre-hero h1,
.sobre-descricao {
    color: var(--white);
}

.sobre-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sobre-descricao {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.suporte-section,
.segmentos-section,
.diferenciais-section {
    padding: 2rem 1rem;
    margin-bottom: 3rem;
}

.suporte-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 3rem 1rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.suporte-section h2 {
    color: var(--white);
}

.suporte-grid,
.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.suporte-card,
.segmento-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.suporte-card:hover,
.segmento-card:hover {
    transform: translateY(-5px);
}

.suporte-card h3,
.suporte-card p {
    color: var(--white);
}

.diferenciais-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 3rem 1rem;
    border-radius: 10px;
}

.diferenciais-section h2 {
    color: var(--white);
}

.diferenciais-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.diferencial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sobre-hero h1 {
        font-size: 2rem;
    }

    .sobre-descricao {
        font-size: 1rem;
    }

    .suporte-grid,
    .segmentos-grid {
        grid-template-columns: 1fr;
    }
}

.segmento-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--white);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.segmento-card:hover .segmento-icon {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-container {
        grid-template-columns: 1fr;
    }

    .contato-map {
        height: 300px;
    }
}

.icon-rocket {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--accent-color);
}

.icon-light {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--accent-color);
}

.modulo-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--accent-color);
}

.modulo-item h4 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.modulo-item:hover .modulo-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.icon-shield {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--accent-color);
}

.certificado-garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Estilos para a página de preços */
.precos {
    padding-top: 100px;
}

.precos-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    margin-top: -4rem;
    padding-top: 8rem;
}

.precos-hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-impact {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-impact {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.plano-card {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.plano-card.destaque {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
}

.plano-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.preco {
    margin: 20px 0;
    text-align: center;
}

.preco-original {
    font-size: 1rem;
    color: #FF0000;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.preco-original span {
    text-decoration: line-through;
}

.preco-label {
    color: #FF0000;
    text-decoration: none !important;
    font-weight: 500;
}

.preco-atual-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.preco-atual {
    color: #0066FF;
    font-size: 2.5rem;
    font-weight: 700;
}

.preco-periodo {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 10px;
}

.recursos {
    margin-top: 20px;
}

.recurso-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.contador {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contador button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.contador button:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.contador button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantidade {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 968px) {
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plano-card.destaque {
        transform: none;
    }
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 2rem;
}

.hero-icon {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
    stroke: currentColor;
    color: var(--white);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.modulos {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.modulos h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.modulo-item {
    margin-bottom: 0.8rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input~.checkmark {
    border-color: var(--accent-color);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.modulo-label {
    font-size: 0.95rem;
    color: var(--text-color);
}

.plano-card h2 {
    position: sticky;
    top: 80px;
    background: var(--bg-color);
    padding: 20px 0;
    z-index: 11;
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
}

.plano-header {
    position: sticky;
    top: 140px;
    background: var(--bg-color);
    padding: 20px 0;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
}

/* Garantir que o background cubra todo o conteúdo */
.plano-card h2,
.plano-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
}

/* Adicionar margem no topo do primeiro elemento do card */
.plano-card>h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

.faq-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-color);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: left;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-button[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-button:hover {
    background: var(--bg-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.handshake-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.4rem;
    }

    .cta-subtext {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

/* Ajuste responsivo para telas menores */
@media (max-width: 768px) {
    .plano-card h2 {
        font-size: 1.8rem;
    }
}

.checkout-section {
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkout-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sistema-selector,
.cupom-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sistema-dropdown {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-color);
}

.cupom-input-group {
    display: flex;
    gap: 1rem;
}

.cupom-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.btn-cupom {
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cupom:hover {
    background: var(--accent-hover);
}

.cupom-message {
    font-size: 0.9rem;
    color: var(--text-color);
}

.total-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.total-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
}

.total-value {
    font-weight: bold;
    color: var(--primary-color);
}

.btn-finalizar {
    width: auto;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-finalizar:hover {
    background-color: var(--primary-hover);
}

/* Atualiza a cor dos botões para o mesmo azul do "Acessar o Sistema" */
.btn-finalizar,
.btn-cupom,
.btn-sistema {
    background-color: #1a73e8;
    color: white;
    transition: background-color 0.3s;
}

.btn-finalizar:hover,
.btn-cupom:hover,
.btn-sistema:hover {
    background-color: #1557b0;
}

.trabalhe-conosco .icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trabalhe-conosco h1 .icon,
.trabalhe-conosco h2 .icon {
    color: var(--primary-color);
}

.trabalhe-conosco .submit-button .icon {
    color: var(--white);
    margin-right: 8px;
    width: 14px;
    height: 14px;
}

.trabalhe-conosco h1,
.trabalhe-conosco h2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ajustes para os checkboxes e textarea */
.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-grid input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.sales-section textarea {
    width: 100%;
    min-height: 150px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
}

.caracteres-restantes {
    display: block;
    margin-top: 8px;
    font-size: 0.9em;
    color: var(--text-light);
}

textarea[name="observacoes"] {
    width: 100%;
    min-height: 150px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
}

footer h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

footer .icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: currentColor;
    margin-right: 0.5rem;
    vertical-align: middle;
}

footer .footer-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-info a:hover {
    color: var(--accent-color);
}

footer .footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: var(--accent-color);
}

/* Estilos do footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-info h4.blue-text {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-info .blue-text {
    color: var(--primary-color);
}

/* Ajuste dos itens de contato */
.contato-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contato-item .icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

/* Ajuste das redes sociais e links úteis */
.footer-info ul {
    list-style: none;
    padding: 0;
}

.footer-info ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-info ul li .icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.footer-info ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info ul li a:hover {
    color: var(--primary-color);
}

html {
    scroll-behavior: smooth;
}

/* Ajuste para compensar o header fixo */
#produtos,
#servicos,
#contatos {
    scroll-margin-top: 80px;
}

/* Ajuste dos ícones na página de acesso remoto */
.tool-card .icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    stroke: currentColor;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
}

.tool-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
    filter: brightness(0.95);
}

.tool-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tool-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Ajuste dos ícones nos links úteis */
.footer-info ul li a svg,
.footer-info ul li a .icon,
.footer-info .contato-item svg,
.footer-info .contato-item .icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: #1a73e8;
    flex-shrink: 0;
}

.footer-info ul li a,
.footer-info .contato-item {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
    gap: 0.8rem;
    transition: opacity 0.3s ease;
}

.footer-info ul li a:hover,
.footer-info .contato-item:hover {
    opacity: 0.8;
}

/* Ajuste específico para a seção de Links Úteis */
.footer-info h4.blue-text {
    color: #1a73e8;
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Mantém o primeiro h4 (da primeira coluna) sem margem superior */
/* .footer-info:first-child h4.blue-text,
.footer-info:first-child h3 {
    margin-top: 0;
} */

/* Ajuste do espaçamento dos itens */
.footer-info ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.footer-info .contato-item {
    margin-bottom: 0.8rem;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .footer-info h4.blue-text {
        margin-top: 0;
    }
}

/* Ajuste específico para ícones do formulário de suporte */
.form-group svg.icon,
.form-group .icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    stroke: currentColor;
    margin-right: 0.5rem;
}

/* Ajuste específico para o botão de enviar solicitação */
.suporte-form button.submit-button {
    width: auto;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.suporte-form button.submit-button .icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
}

/* Melhorias no layout da página de suporte */
.suporte-page {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}

.suporte-page .hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    margin: 20px;
    padding: 60px 40px;
    text-align: center;
}

.suporte-page .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.suporte-page .hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    opacity: 0.9;
}

.form-section {
    padding: 40px 20px;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.suporte-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group h2 {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.input-grid input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.input-grid input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.checkbox-grid label:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.checkbox-grid label:hover .info-icon path {
    fill: var(--primary-color);
}

.checkbox-grid label:hover {
    background-color: initial;
    box-shadow: none;
}

.checkbox-grid label.expanded {
    background: var(--primary-color);
    color: var(--white);
    margin-bottom: 100px;
}

.checkbox-grid label.expanded .info-icon path {
    fill: var(--white);
}

.checkbox-grid label:hover .info-icon {
    color: var(--white);
}

.checkbox-grid label:hover .info-icon path {
    fill: var(--white);
}

.checkbox-grid label:hover {
    background-color: initial;
}

.submit-button {
    align-self: center;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--accent-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .suporte-page .hero {
        margin: 10px;
        padding: 40px 20px;
    }

    .suporte-page .hero h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 20px;
    }

    .form-group {
        padding: 20px;
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilo para os tooltips de informação */
.service-info {
    position: static;
    display: inline-flex;
    align-items: center;
}

.info-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
    color: #e2e8f0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.info-icon path {
    fill: var(--primary-color);
    stroke: none;
}

.info-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.tooltip {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: rgba(55, 65, 81, 0.95);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    margin-top: 10px;
}

.tooltip.active {
    display: block;
}

/* Remove a seta do tooltip */
.tooltip::before {
    display: none;
}

/* Ajusta o espaçamento entre itens quando o tooltip está ativo */
.checkbox-grid label {
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 15px;
}

.checkbox-grid label.expanded {
    margin-bottom: 100px;
    background: var(--primary-color);
    color: var(--white);
}

/* Ajuste para o ícone quando o label está expandido */
.checkbox-grid label.expanded .info-icon {
    color: var(--white);
}

.checkbox-grid label.expanded .info-icon path {
    fill: var(--white);
}

/* Container para o texto e checkbox */
.checkbox-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Estilos para Modelo de Contratação */
.contratacao-container {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
}

.contratacao-section {
    margin-bottom: 2rem;
}

.contratacao-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.contratacao-section .radio-group {
    display: grid;
    gap: 1.5rem;
}

.contratacao-section .radio-group label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contratacao-section .radio-group label:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contratacao-section .radio-group label input[type="radio"] {
    margin-right: 15px;
    width: 18px;
    height: 18px;
}

.contratacao-section .radio-label {
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-right: auto;
}

.contratacao-section .radio-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: auto;
    white-space: nowrap;
    opacity: 0.8;
}

.contratacao-section .radio-group label:hover .radio-desc {
    color: var(--white);
    opacity: 1;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .contratacao-section .radio-group label span {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contratacao-section .radio-desc {
        margin-left: 28px;
        white-space: normal;
    }

    .contratacao-section .radio-label {
        white-space: normal;
    }
}

/* Ajuste do grid para Porte da Empresa e Quantidade de Dispositivos */
.infra-section .radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Alterado para 2 colunas */
    gap: 1.5rem;
    /* Aumentado o gap entre os itens */
    margin-top: 1rem;
}

/* Ajuste do layout dos itens */
.infra-section .radio-group label {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    /* Aumentado o padding */
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Ajuste do texto dentro dos itens */
.infra-section .radio-label {
    font-size: 1rem;
    /* Aumentado tamanho da fonte */
    margin-left: 0.8rem;
    /* Aumentado espaçamento após o radio button */
    line-height: 1.4;
    /* Melhor espaçamento entre linhas */
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .infra-section .radio-group {
        grid-template-columns: 1fr;
    }
}

/* Ajuste do texto dentro dos itens */
.infra-section .radio-label {
    font-size: 1rem;
    margin-left: 0.8rem;
    line-height: 1.4;
    word-spacing: 0.2rem;
    /* Adiciona espaço entre palavras */
}

/* Ajuste específico para números e palavras */
.infra-section .radio-label span {
    margin: 0 0.2rem;
    /* Adiciona margem entre números e palavras */
}

/* Ajuste do layout dos itens */
.infra-section .radio-group label {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.01rem;
    /* Leve ajuste no espaçamento entre letras */
}

.radio-label {
    margin-left: 0.8rem;
    margin-right: 0.5rem;
    /* Espaço entre o número e a descrição */
}

.radio-desc {
    color: var(--text-light);
    margin-left: 0.5rem;
    /* Espaço antes da descrição */
}

/* Estilo para os títulos das seções */
.infra-section h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

/* Ícone para Porte da Empresa */
.infra-section h3.porte-title::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230052CC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Ícone para Quantidade de Dispositivos */
.infra-section h3.dispositivos-title {
    margin-top: 2rem;
}

.infra-section h3.dispositivos-title::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230052CC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='8' y1='21' x2='16' y2='21'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12' y2='21'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Ajuste do hover para os radio buttons de Porte e Dispositivos */
.infra-section .radio-group label:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Ajuste da cor do texto secundário no hover */
.infra-section .radio-group label:hover .radio-desc {
    color: var(--white);
    opacity: 1;
}

/* Ajuste do hover para os checkboxes de Serviços Desejados */
.checkbox-grid label:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Ajuste do ícone quando hover */
.info-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
    color: #e2e8f0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.info-icon path {
    fill: var(--primary-color);
    stroke: none;
}

/* Ajuste do hover do ícone */
.checkbox-grid label:hover .info-icon {
    opacity: 1;
}

.checkbox-grid label:hover .info-icon path {
    fill: var(--primary-color);
}

/* Mantém o efeito quando expandido */
.checkbox-grid label.expanded {
    background: var(--primary-color);
    color: var(--white);
    margin-bottom: 100px;
}

.checkbox-grid label.expanded .info-icon path {
    fill: var(--white);
}

/* Estilos para a seção hero do Trabalhe Conosco */
.hero-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 6rem 2rem;  /* Aumentado de 4rem para 6rem */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;  /* Aumentado de 3rem para 4rem */
    margin-bottom: 2rem;  /* Aumentado de 1.5rem para 2rem */
    font-weight: 700;
}

.hero-text {
    font-size: 1.5rem;  /* Aumentado de 1.25rem para 1.5rem */
    max-width: 900px;  /* Aumentado de 800px para 900px */
    margin: 0 auto 4rem;  /* Aumentado margin-bottom de 3rem para 4rem */
    line-height: 1.6;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;  /* Aumentado de 4rem para 6rem */
    margin-top: 4rem;  /* Aumentado de 3rem para 4rem */
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-item .icon {
    width: 50px;  /* Aumentado de 40px para 50px */
    height: 50px;  /* Aumentado de 40px para 50px */
    stroke: var(--white);
    margin-bottom: 1rem;  /* Aumentado de 0.5rem para 1rem */
}

.stat-number {
    font-size: 3.5rem;  /* Aumentado de 2.5rem para 3.5rem */
    font-weight: 700;
}

.stat-label {
    font-size: 1.2rem;  /* Aumentado de 1rem para 1.2rem */
    opacity: 0.9;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Estilos para a seção de níveis profissionais */
.level-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.level-info {
    display: block; /* Mudado de none para block */
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.info-icon {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    stroke: var(--primary-color);
    cursor: help;
}

/* Estilo quando passar o mouse sobre o ícone de informação */
.level-option:hover .level-info {
    display: block;
}

/* Estilo do conteúdo dentro do level-info */
.level-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.level-details li {
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-color);
    font-size: 0.9rem; /* Adicionado para deixar o texto um pouco menor */
}

.example {
    padding: 1rem;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 4px;
    margin-top: 1rem;
    color: var(--text-color);
}

.observation {
    padding: 1rem;
    background: rgba(231, 76, 60, 0.05);
    border-radius: 4px;
    margin-top: 1rem;
    color: #e74c3c;
}

/* Estilo do radio button */
.level-option input[type="radio"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .level-container {
        margin-bottom: 1.5rem;
    }

    .level-info {
        padding: 1rem;
    }
}

/* Atualizar estilos dos níveis */
.level-container {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.level-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--light-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.level-option:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
}

.level-info {
    display: block; /* Mudado de none para block */
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.level-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.level-details li {
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-color);
    font-size: 0.9rem; /* Adicionado para deixar o texto um pouco menor */
}

.example {
    padding: 1rem;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 4px;
    margin-top: 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.observation {
    padding: 1rem;
    background: rgba(231, 76, 60, 0.05);
    border-radius: 4px;
    margin-top: 1rem;
    color: #e74c3c;
    font-size: 0.9rem;
}

/* Estilo do radio button */
.level-option input[type="radio"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .level-container {
        margin-bottom: 1.5rem;
    }

    .level-info {
        padding: 1rem;
    }
}

/* Estilos para os ícones dos níveis */
.level-icon {
    width: 16px;  /* Reduzido de 20px para 16px */
    height: 16px; /* Reduzido de 20px para 16px */
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-right: 8px;  /* Reduzido de 10px para 8px */
    vertical-align: middle;
    display: inline-block;
}

.level-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.9rem;
    gap: 8px;  /* Adicionado gap para melhor espaçamento */
}

.example, .observation {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.example {
    background: rgba(var(--primary-color-rgb), 0.05);
    color: var(--text-color);
}

.example .level-icon {
    margin-top: 2px;
}

.observation {
    background: rgba(231, 76, 60, 0.05);
    color: #e74c3c;
}

.observation .level-icon {
    stroke: #e74c3c;
    margin-top: 2px;
}

/* Ajustar ícones no exemplo e observação */
.example .level-icon,
.observation .level-icon {
    width: 16px;  /* Reduzido de 20px para 16px */
    height: 16px; /* Reduzido de 20px para 16px */
    margin-top: 2px;
}

/* Ajustar ícones dos fatores adicionais */
.factor-icon {
    width: 16px;  /* Reduzido de 18px para 16px */
    height: 16px; /* Reduzido de 18px para 16px */
    stroke: var(--primary-color);
    flex-shrink: 0;
}

/* Ajuste para o título dos Outros Fatores */
.level-option .info-icon {
    width: 16px;
    height: 16px;
    stroke: var(--primary-color);
    margin-right: 8px;
}

.level-option {
    font-weight: 500;
    color: var(--text-color);
}

/* Estilos para os subtítulos de tecnologias */
.tech-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-icon {
    width: 16px;
    height: 16px;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Ajuste do grid de checkboxes */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding-left: 2rem; /* Indentação dos checkboxes */
    margin-bottom: 1.5rem;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.checkbox-grid label:hover {
    color: var(--primary-color);
}

.checkbox-grid input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    cursor: pointer;
}

/* Estilos para a página de parceiros */
.parceiros-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a73e8 100%);
    color: white;
    padding: 6rem 5% 4rem;
    text-align: center;
}

.parceiros-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.parceiros-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.parceiros-hero .hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.partnership-types {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.partnership-types h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-card .icon {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    margin-bottom: 1rem;
}

.type-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.type-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .parceiros-hero h1 {
        font-size: 2rem;
    }

    .parceiros-hero .hero-text {
        font-size: 1rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para a seção de benefícios */
.benefits-section {
    padding: 4rem 5%;
    background: var(--white);
}

.benefits-section h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Estilos para o formulário de contato */
.contact-section {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.partnership-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.partnership-form .form-group {
    display: grid;
    gap: 1rem;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.partnership-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--accent-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Ajuste para os indicadores em telas menores */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        width: 100%;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* Ajuste do espaçamento dos stats na versão desktop */
.hero-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Ajuste do tamanho dos ícones */
.hero-stats .icon {
    width: 40px;  /* Aumentado de 24px para 40px */
    height: 40px; /* Aumentado de 24px para 40px */
    stroke: var(--white);
    margin-bottom: 1rem;
}

.type-card .icon {
    width: 32px;  /* Reduzido de 48px */
    height: 32px;
    stroke: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card .icon {
    width: 28px;  /* Reduzido de 40px */
    height: 28px;
    stroke: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item .icon {
    width: 20px;  /* Reduzido de 24px */
    height: 20px;
    stroke: var(--primary-color);
}

.submit-button .icon {
    width: 18px;  /* Reduzido de 24px */
    height: 18px;
    stroke: var(--white);
}

/* Ajuste para ícones em telas menores */
@media (max-width: 768px) {
    .hero-stats .icon {
        width: 32px;  /* Aumentado de 20px para 32px */
        height: 32px;
    }

    .type-card .icon {
        width: 28px;
        height: 28px;
    }
}

/* Ajuste para o ícone do título */
.title-icon {
    width: 120px;  /* Reduzido do tamanho atual */
    height: 120px;
    stroke: var(--white);
    margin-bottom: 1rem;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .title-icon {
        width: 80px;
        height: 80px;
    }
}

/* Ajuste do tamanho dos ícones dos indicadores */
.hero-stats .icon {
    width: 60px;  /* Aumentado de 40px para 60px */
    height: 60px; /* Aumentado de 40px para 60px */
    stroke: var(--white);
    margin-bottom: 1rem;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .hero-stats .icon {
        width: 45px;  /* Aumentado de 32px para 45px */
        height: 45px;
    }
}

/* Ajuste do espaçamento dos stats */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem; /* Aumentado de 0.5rem para 1rem para melhor espaçamento */
}

.stat-number {
    font-size: 3.5rem; /* Mantido o tamanho atual */
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem; /* Mantido o tamanho atual */
    opacity: 0.9;
}

/* Ajuste dos ícones da página sobre */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a73e8 100%);
    color: white;
    padding: 6rem 5% 4rem;
    text-align: center;
}

.about-hero h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-section {
    padding: 4rem 5%;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Missão, Visão e Valores */
.mvv-section {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mvv-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

/* O Que Fazemos */
.services-section {
    padding: 4rem 5%;
    background: var(--white);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Efeito hover */
.services-list li:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.services-list li:hover .service-icon {
    stroke: var(--white);
}

/* Por Que Escolher */
.why-choose-section {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.choose-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
    padding: 0;
}

.choose-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.choose-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Efeito hover */
.choose-list li:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.choose-list li:hover .choose-icon {
    stroke: var(--white);
}

/* Responsivo */
@media (max-width: 768px) {
    .choose-list li {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Seção de Contato */
.contact-section {
    padding: 4rem 5%;
    background: var(--white);
    text-align: center;
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-info {
    display: inline-block;
    text-align: left;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Títulos das seções */
section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .mvv-card {
        padding: 1.5rem;
    }

    .services-list li,
    .choose-list li {
        font-size: 1rem;
        padding: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
        width: 100%;
    }
}

/* Estilo para os ícones de check */
.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-right: 10px;
    vertical-align: middle;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Estilo para os itens de contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px; /* Mesma largura da lista choose-list */
    margin: 0 auto; /* Centralizar */
    padding: 0; /* Removido padding extra */
    background: transparent; /* Removido background do container */
    box-shadow: none; /* Removido shadow do container */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Efeito hover */
.contact-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.contact-item:hover .contact-icon {
    stroke: var(--white);
}

.contact-item:hover span {
    color: var(--white);
}

.contact-item span {
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-info {
        padding: 0 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

.equipment-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.equipment-icon {
    width: 18px;
    height: 12px;
    color: var(--primary-color);
    margin-right: 8px;
    flex-shrink: 0;
}

.equipment-info {
    flex: 1;
}

.equipment-info h3 {
    margin: 0 0 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.equipment-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.equipment-info small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Estilos para o formulário de cadastro */
.cadastro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cadastro-container h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group h3 {
    grid-column: 1 / -1;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.form-group input {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-buscar {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-buscar:hover {
    background: var(--accent-color);
}

.btn-confirmar {
    grid-column: 1 / -1;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-confirmar:hover {
    background: var(--accent-color);
}

/* Estilo base para o campo de cupom */
.cupom-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.cupom-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.btn-aplicar-cupom {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .cupom-container {
        flex-direction: column;
        padding: 0 1rem;
    }

    .cupom-input {
        width: 100%;
        max-width: 100%;
    }

    .btn-aplicar-cupom {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Estilos para a página de sucesso */
.sucesso-wrapper {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 2rem;
}

.sucesso-container {
    background: var(--bg-color);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 600px;  /* Reduzido de 1000px para 600px para layout em coluna única */
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sucesso-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sucesso-header h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.instrucoes {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.edit-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-group {
    padding: 1rem;
}

section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 2rem;  /* Espaçamento entre seções */
}

section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.empresa-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.endereco-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Ajustes para campos específicos */
input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

/* Ajuste para grupos de busca */
.cnpj-group, .cep-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.cnpj-group input, .cep-group input {
    flex: 1;
    max-width: none;  /* Remove a limitação de largura */
}

.btn-buscar {
    white-space: nowrap;
    min-width: 120px;
}

/* Ajuste para informações adicionais */
.email-info, small {
    display: block;
    margin: -0.5rem 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Ajuste para o botão de confirmar */
.btn-confirmar {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Estilos para os ícones da página de sucesso */
.sucesso-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sucesso-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

.edit-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin: 1rem 0;
}

.edit-info svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

/* Ícones para os grupos de formulário */
.form-group svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    stroke-width: 2;
    margin-right: 0.5rem;
}

.section-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.section-icon h2 {
    margin: 0;
}

/* Estilos para os cards de equipamentos */
.equipamento-card {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.equipamento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.equipamento-titulo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.equipamento-titulo svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.equipamento-descricao {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.equipamento-info {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Estilos para a seção ERP */
.erp {
    padding: 4rem 2rem;
    text-align: center;
}

.erp h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.erp h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.erp-content {
    max-width: 1200px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.erp-info {
    text-align: left;
}

.erp-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.erp-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.erp-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

/* Responsividade */
@media (min-width: 768px) {
    .erp-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .erp-info {
        flex: 1;
        padding-right: 2rem;
    }

    .erp-features {
        flex: 1;
    }
}

/* Estilos para a seção de Área de Interesse */
.area-interesse {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 2rem auto;
    max-width: 1200px; /* Aumentado para acomodar colunas mais largas */
}

.area-interesse h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.area-interesse h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.nivel-experiencia {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.nivel-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nivel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.nivel-icon {
    width: 32px; /* Ícone maior */
    height: 32px;
    stroke: var(--primary-color);
    margin-bottom: 1rem;
}

.nivel-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nivel-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.exemplo-box {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 12px 12px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exemplo-box p {
    font-style: italic;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .nivel-experiencia {
        display: block;
    }
    
    .area-interesse {
        padding: 1.5rem;
    }
    
    .area-interesse h3 {
        font-size: 1.75rem;
    }
}

/* Estilos para a página de atualizações */
.atualizacoes-page {
    padding-top: 80px;
}

.updates-section {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.system-updates {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.system-updates h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.update-list {
    display: grid;
    gap: 2rem;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .updates-section {
        padding: 2rem 1rem;
    }

    .system-updates {
        padding: 1.5rem;
    }

    .system-updates h2 {
        font-size: 1.5rem;
    }
}

/* Estilos para os cards de release */
.releases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}

.releases-grid .release-card {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
}

.release-card {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.release-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.release-card h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.release-info {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.release-info p {
    color: var(--text-light);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.release-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.release-button:hover {
    background: var(--accent-color);
}

.section-title {
    color: var(--text-color);
    font-size: 2rem;
    margin: 2rem 0;
    padding-left: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .releases-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        padding-left: 1rem;
    }
}