/* Estilos para a seção home corrigida */
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    background-color: #333; /* Fallback se a imagem não carregar */
    color: #fff;
    /* Remover o filter: blur daqui */
}

/* Elemento de fundo com blur */
.blur-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(src/images/fundo.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(5px); /* Blur apenas no fundo */
    z-index: 0;
}

.shape-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(51, 51, 51, 0.6) 50%, rgba(51, 51, 51, 0.5));
    z-index: 1;
}

/* Os elementos de conteúdo precisam de um z-index maior */
#cta {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 50px 0;
}

.brand-tag {
    display: inline-block;
    background-color: #244c6f; /* Verde - ajuste conforme sua paleta */
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 100%;
}

/* Estilo melhorado para os diferenciais */
.home-features {
    display: flex;
    margin-bottom: 40px;
    gap: 25px; /* Aumentado um pouco o espaçamento entre os itens */
}

.feature-item {
    display: flex
    ;
        align-items: center;
        background: rgba(30, 30, 30, 0.75);
        border-radius: 18px;
        padding: 20px 10px;
        width: 198px;
        height: 78px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        border-left: 4px solid rgb(74 159 216);
}

.feature-item:hover {
    transform: translateY(-5px); /* Levanta levemente no hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); /* Sombra maior no hover */
    background: rgba(35, 35, 35, 0.85); /* Um pouco mais escuro no hover */
}

.feature-icon {
   
    background-color: rgba(46, 139, 87, 0.25);
    border-radius: 50%;
    width: 60px;
    height: 50px;
    display: contents;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    box-shadow: 0 4px 10px rgba(46, 139, 87, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: rgba(46, 139, 87, 0.4); /* Fundo mais forte no hover */
    transform: scale(1.1); /* Aumenta o ícone ligeiramente no hover */
}

.feature-icon i {
    color: #ffffff;; /* Verde - ajuste conforme sua paleta */
    font-size: 1.4rem; /* Ícone um pouco maior */
}

.feature-item span {
    font-size: 1rem; /* Texto um pouco maior */
    font-weight: 600; /* Texto mais negrito */
    letter-spacing: 0.5px; /* Espaçamento entre letras */
    color: #ffffff; /* Garantir que o texto seja branco */
    transition: all 0.3s ease;
}

.feature-item:hover span {
    color: #ffffff; /* Garante que permaneça branco mesmo no hover */
}

/* Ajustes para responsividade */
@media (max-width: 768px) {
    .home-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 90%; /* Ocupar mais largura em telas menores */
        max-width: 320px; /* Mas com largura máxima */
    }
}

/* Estilo corrigido para os botões */
#cta_buttons {
    display: flex;
    margin-bottom: 50px;
    gap: 15px;
}

.btn-default {
    background-color: #244c6f; /* Verde - ajuste conforme sua paleta */
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-outline {
    background-color: white;
    color: #333;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-default:hover, .btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-default i, .btn-outline i {
    margin-right: 8px;
}

/* Estilo corrigido para as credenciais */
.credentials-bar {
    display: flex;
    gap: 60px;
}

.credential {
    display: flex;
    flex-direction: column;
}

.credential-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(74 159 216); /* Verde - ajuste conforme sua paleta */
    line-height: 1;
    margin-bottom: 5px;
}

.credential-text {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
    font-weight: 700;
    font-family: 'Poppins';
    line-height: 1.2;
}

/* Ajustes para responsividade */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .home-features {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        margin-right: 0;
    }
    
    #cta_buttons {
        flex-direction: column;
    }
    
    .btn-default, .btn-outline {
        width: 100%;
    }
    
    .credentials-bar {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .credentials-bar {
        justify-content: space-between;
        gap: 20px;
    }
    
    .credential-number {
        font-size: 2rem;
    }
}