/* Estilos para uma seção de segurança elegante e profissional */

.security-section-elegant {
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
    position: relative;
}

.security-section-elegant .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.security-section-elegant h2 {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.security-section-elegant h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #1e6f5c;
}

.security-content-elegant {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.security-item-elegant {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.security-item-elegant:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.security-item-elegant .header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.security-item-elegant .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f9f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.security-item-elegant .icon i {
    font-size: 1.5rem;
    color: #1e6f5c;
}

.security-item-elegant h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

.security-item-elegant .content {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.security-item-elegant .content p {
    margin-bottom: 15px;
}

.security-item-elegant .content p:last-child {
    margin-bottom: 0;
}

.security-item-elegant .content strong {
    color: #333;
    font-weight: 600;
}

.reclame-aqui-link-elegant {
    display: inline-block;
    margin-top: 20px;
    color: #1e6f5c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.reclame-aqui-link-elegant:hover {
    color: #164e3f;
    border-bottom-color: #164e3f;
}

.reclame-aqui-link-elegant i {
    margin-left: 5px;
    font-size: 0.9em;
}

.security-badges-elegant {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.security-badge-elegant {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.security-badge-elegant .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f5f9f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.security-badge-elegant:hover .icon-wrapper {
    background-color: #e0f0eb;
    transform: scale(1.05);
}

.security-badge-elegant i {
    font-size: 1.5rem;
    color: #1e6f5c;
}

.security-badge-elegant .label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .security-section-elegant {
        padding: 40px 0;
    }
    
    .security-section-elegant h2 {
        font-size: 1.8rem;
    }
    
    .security-item-elegant {
        padding: 25px;
    }
    
    .security-badges-elegant {
        gap: 20px;
    }
    
    .security-badge-elegant .icon-wrapper {
        width: 50px;
        height: 50px;
    }
}
