/* --- Reset básico e configurações globais --- */
html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #111111;
    color: #FFFFFF;
}

/* --- Estilização do Header e Navbar --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #000000; /* Alterado para preto sólido */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

/* --- NOVOS ESTILOS PARA O LOGO --- */
.navbar-logo {
    text-decoration: none;
    display: flex;
    flex-direction: row; /* Alterado */
    align-items: center;  /* Adicionado */
    gap: 12px;           /* Adicionado */
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo .logo-icon {
    height: 55px; /* Tamanho padronizado */
    width: auto;
}

.navbar-logo .logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-logo .logo-main {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #4CAF50;
    display: block;
    letter-spacing: 1px;
    line-height: 1;
}

.navbar-logo .logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #FFFFFF;
    display: block;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}
/* --- FIM DOS ESTILOS DO LOGO --- */


.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-link,
.nav-link:visited {
    font-family: 'Poppins', sans-serif;
    color: #E0E0E0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 10px 5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #368731;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-button-login {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #368731;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-button-login:hover {
    background-color: #2b6b26;
    transform: scale(1.05);
    color: #FFFFFF;
}

.nav-button-login::after {
    display: none;
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

/* ========= SEÇÃO DE PREÇOS ========= */
.pricing-section {
    padding: 80px 20px;
    text-align: center;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-section h1 {
    font-size: 52px;
    color: #368731;
    margin: 0 0 10px 0;
}

.subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
}

.brand-link a {
    color: #368731;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.pricing-box {
    border: 2px solid #368731;
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 0 60px 0;
}

.pricing-card {
    background-color: #222222;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-top: 60px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    height: 40px;
}

.pricing-card h2 {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 25px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-note {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.cta-button {
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cta-button:hover {
    background-color: #1a1a1a;
    border-color: #368731;
    transform: translateY(-2px);
}

/* ###################################################### */
/* ### INÍCIO DA ESTILIZAÇÃO DO RODAPÉ ### */
/* ###################################################### */

.site-footer {
    background-color: #000000; /* Um preto mais profundo para destacar */
    color: #b0b0b0;
    padding: 80px 20px 20px 20px;
    border-top: 1px solid #222;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Cria 4 colunas em telas grandes e se ajusta automaticamente para telas menores */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

/* Linha verde decorativa abaixo dos títulos */
.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #368731;
}

.footer-column .navbar-logo {
    margin-bottom: 20px;
}

.footer-column .about-text {
    font-size: 15px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-column ul a:hover {
    color: #368731;
    padding-left: 5px; /* Efeito sutil no hover */
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li i {
    color: #368731;
    font-size: 18px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #1E1E1E;
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: #368731;
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 14px;
}

/* Ajustes de responsividade para o rodapé */
@media (max-width: 900px) {
    .footer-container {
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-about .navbar-logo {
        align-items: center; /* Centraliza o logo no mobile */
    }
    .footer-contact li {
        justify-content: center; /* Centraliza os ícones e textos de contato */
    }
}

/* ###################################################### */
/* ### INÍCIO DAS REGRAS DE RESPONSIVIDADE ### */
/* ###################################################### */

@media (max-width: 900px) {
    /* --- Menu Hambúrguer --- */
    .nav-toggle-label {
        display: block;
        position: relative;
        height: 25px;
        width: 30px;
        cursor: pointer;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: white;
        height: 3px;
        width: 100%;
        border-radius: 10px;
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }

    .nav-toggle-label span::after {
        content: '';
        top: 8px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: fixed; /* MANTIDO COMO fixed */
        top: 90px;
        right: 0;
        background: #1E1E1E;
        width: 100%;
        height: calc(100vh - 90px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 0;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }

    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* --- Ajustes da Seção de Preços --- */
    .pricing-section h1 {
        font-size: 34px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .pricing-box {
        padding: 30px 20px;
    }
}