/* css/body.css */
@import url('https://fonts.googleapis.com/css2?family=Niramit:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
    margin: 0;
    font-family: 'Niramit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    
    .hide-mobile {
        display: none;
    }
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.painel {
    padding: 50px;
}


.painelrodape {
    background-color: #EAFFF5; /* verde claro */
    padding: 100px;
    text-align: center;
}

.titulo-principal {
    text-align: center;
    font-size: 30px;
    max-width: 800px;
    margin: 150px auto 40px;
    color: #46791E;
    font-weight: 100;
}

.imagem-principal {
    width: 750px;
    margin: 30px auto 0px;
    position: relative;
    z-index: 2;
    
}

.imagem-principal img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .imagem-principal {
        width: 100%;
       
    }
}

.botao-criar-conta {
    background-color: transparent;
    color: #46791E; /* verde escuro */
    border: 2px solid #46791E;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none; /* se for <a> */
    display: inline-block;
}

.botao-criar-conta:hover {
    background-color: #46791E;
    color: #ffffff;
}

.painel2-grid {
    display: flex;
    gap: 0px;
}

/* Coluna vertical à esquerda */
.painel2-coluna {
    flex: 1;
    font-weight: 100;
    background-color: #C2F5DF;
    min-height: 600px;
    border-radius: 15px;
    
    background-image: url('../img/illust-agrofloresta.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%; /* ou contain, cover conforme o efeito desejado */
}

.imagem-centro {
    text-align: center;
    margin: 20px 0;
}

/* Blocos horizontais à direita */
.painel2-linhas {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.linha-box {
    min-height: 180px;
    padding: 50px;
    box-sizing: border-box;
}

.problemas-grid {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.problema-box {
    flex: 1;
    
    border: 2px solid #00C86C;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-weight: 300;
}

/* Responsivo: empilhar no mobile */
@media (max-width: 768px) {
    .problemas-grid {
        flex-direction: column;
    }

    .problema-box {
        max-width: 100%;
    }
}

.funcionalidades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 50px;
}

.funcionalidade-box {
    flex: 1 1 calc(25% - 20px);
    background-color: #EAFFF5;
    border: 2px solid #C2F5DF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-size: 70px;
    background-position: center;
    background-repeat: no-repeat;
}

.funcionalidade-box h4 {
    color: #46791E;
    margin: 10px 0 5px;
    font-weight: 600;
}

.funcionalidade-box p {
    font-size: 14px;
    font-weight: 300;
}

/* Responsivo: empilha no mobile */
@media (max-width: 768px) {
    .funcionalidade-box {
        flex: 1 1 100%;
    }
}

.tabela-pacotes {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    margin-top: 30px;
}

.tabela-pacotes th,
.tabela-pacotes td {
    border: 1px solid #00C86C;
    padding: 15px;
    text-align: center;
    transition: background-color 0.3s;
}

.tabela-pacotes th {
    background-color: #EAFFF5;
    color: #00C86C;
    font-weight: 600;
}

.tabela-pacotes td:first-child {
    background-color: #EAFFF5;
    font-weight: 500;
    color: #333;
}

.tabela-pacotes td {
    background-color: #ffffff;
    color: #333;
}

/* Hover na coluna */
.tabela-pacotes tr:hover td {
    background-color: #f2fbf7;
}

/* Botões Criar Conta */
.botao-criar {
    background-color: #00C86C;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.botao-criar:hover {
    background-color: #46791E;
    color: #ffffff;
}

/* Responsivo */
@media (max-width: 768px) {
    .tabela-pacotes {
        font-size: 13px;
    }
}




